-
Type:
Enhancement
-
Resolution: Fixed
-
Priority:
P4
-
Affects Version/s: 16
-
Component/s: client-libs
-
None
-
b08
-
generic
-
generic
We have a lot of font logging calls in java.desktop that looks similar to this :
if (FontUtilities.isLogging()) {
FontUtilities.getLogger().info("Here comes my important info");
}
This could be simplified by adding static log methods to FontUtilities.java .
if (FontUtilities.isLogging()) {
FontUtilities.getLogger().info("Here comes my important info");
}
This could be simplified by adding static log methods to FontUtilities.java .