Details
-
Type:
Enhancement
-
Status: Resolved
-
Priority:
P4
-
Resolution: Fixed
-
Affects Version/s: 16
-
Fix Version/s: 16
-
Component/s: client-libs
-
Labels:None
-
Subcomponent:
-
Resolved In Build:b08
-
CPU:generic
-
OS:generic
Description
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 .