-
Bug
-
Resolution: Fixed
-
P4
-
8
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.