diff --git a/test/dorkbox/TestTray.java b/test/dorkbox/TestTray.java index 8e8bcb7..4c567eb 100644 --- a/test/dorkbox/TestTray.java +++ b/test/dorkbox/TestTray.java @@ -28,7 +28,6 @@ import dorkbox.systemTray.Separator; import dorkbox.systemTray.SystemTray; import dorkbox.util.CacheUtil; import dorkbox.util.Desktop; -import dorkbox.util.SwingUtil; /** * Icons from 'SJJB Icons', public domain/CC0 icon set @@ -62,7 +61,7 @@ class TestTray { TestTray() { CacheUtil.clear(); // for test apps, make sure the cache is always reset. You should never do this in production. - SwingUtil.setLookAndFeel(null); // set Native L&F (this is the System L&F instead of CrossPlatform L&F) + // SwingUtil.setLookAndFeel(null); // set Native L&F (this is the System L&F instead of CrossPlatform L&F) // SystemTray.SWING_UI = new CustomSwingUI(); this.systemTray = SystemTray.get(); diff --git a/test/dorkbox/TestTrayJavaFX.java b/test/dorkbox/TestTrayJavaFX.java index d8fcac6..4680a21 100644 --- a/test/dorkbox/TestTrayJavaFX.java +++ b/test/dorkbox/TestTrayJavaFX.java @@ -29,7 +29,6 @@ import dorkbox.util.CacheUtil; import dorkbox.util.Desktop; import dorkbox.util.JavaFX; import dorkbox.util.OS; -import dorkbox.util.SwingUtil; import javafx.application.Application; import javafx.application.Platform; import javafx.event.ActionEvent; @@ -124,7 +123,7 @@ class TestTrayJavaFX { CacheUtil.clear(); // for test apps, make sure the cache is always reset. You should never do this in production. - SwingUtil.setLookAndFeel(null); // set Native L&F (this is the System L&F instead of CrossPlatform L&F) + // SwingUtil.setLookAndFeel(null); // set Native L&F (this is the System L&F instead of CrossPlatform L&F) // SystemTray.SWING_UI = new CustomSwingUI(); this.systemTray = SystemTray.get(); diff --git a/test/dorkbox/TestTraySwt.java b/test/dorkbox/TestTraySwt.java index e9c405d..3aecbd6 100644 --- a/test/dorkbox/TestTraySwt.java +++ b/test/dorkbox/TestTraySwt.java @@ -33,7 +33,6 @@ import dorkbox.systemTray.Separator; import dorkbox.systemTray.SystemTray; import dorkbox.util.CacheUtil; import dorkbox.util.Desktop; -import dorkbox.util.SwingUtil; /** * Icons from 'SJJB Icons', public domain/CC0 icon set @@ -78,7 +77,7 @@ class TestTraySwt { CacheUtil.clear(); // for test apps, make sure the cache is always reset. You should never do this in production. - SwingUtil.setLookAndFeel(null); // set Native L&F (this is the System L&F instead of CrossPlatform L&F) + // SwingUtil.setLookAndFeel(null); // set Native L&F (this is the System L&F instead of CrossPlatform L&F) // SystemTray.SWING_UI = new CustomSwingUI(); this.systemTray = SystemTray.get();