-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P4
-
Affects Version/s: 8
-
Component/s: javafx
The following code appears in LauncherImpl:
if (verbose) {
System.err.println("Java 8 launchApplication method: launchMode="
+ launchMode);
}
...
verbose = Boolean.getBoolean("javafx.verbose");
Since it is initialized to false, the above print statement is dead code.
if (verbose) {
System.err.println("Java 8 launchApplication method: launchMode="
+ launchMode);
}
...
verbose = Boolean.getBoolean("javafx.verbose");
Since it is initialized to false, the above print statement is dead code.