Forgot to disable debug. Updated version.

This commit is contained in:
nathan 2017-08-24 22:51:24 +02:00
parent fecb27014f
commit 8b0c90156e
2 changed files with 3 additions and 3 deletions

View File

@ -261,7 +261,7 @@ Maven Info
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>SystemTray</artifactId>
<version>3.2</version>
<version>3.3</version>
</dependency>
</dependencies>
````

View File

@ -140,7 +140,7 @@ class SystemTray {
/**
* This property is provided for debugging any errors in the logic used to determine the system-tray type.
*/
public static boolean DEBUG = true;
public static boolean DEBUG = false;
private static volatile SystemTray systemTray = null;
@ -989,7 +989,7 @@ class SystemTray {
*/
public static
Version getVersion() {
return new Version("3.2");
return new Version("3.3");
}
/**