Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/org/violetlib/vaquaclient/AppearanceSupport.java
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ private AppearanceSupport()
ClassLoader classLoader = laf.getClass().getClassLoader();
try {
vAppearancesClass = Class.forName("org.violetlib.vappearances.VAppearances", true, classLoader);
System.err.println("Loaded VAppearances using VAqua class loader");
return vAppearancesClass;
} catch (Exception ex) {
System.err.println("Did not find VAppearances using VAqua class loader");
Expand All @@ -137,7 +136,6 @@ private AppearanceSupport()
// possible.
try {
vAppearancesClass = Class.forName("org.violetlib.vappearances.VAppearances");
System.err.println("Loaded VAppearances because look and feel is " + laf.getName());
return vAppearancesClass;
} catch (Exception ex) {
System.err.println("Did not find VAppearances using application class loader");
Expand Down