aboutsummaryrefslogtreecommitdiff
path: root/libraries/launcher/org/prismlauncher/EntryPoint.java
diff options
context:
space:
mode:
authorTheKodeToad <TheKodeToad@proton.me>2022-11-04 10:31:31 +0000
committerTheKodeToad <TheKodeToad@proton.me>2022-11-08 16:37:27 +0000
commit56d5035c63fc3146832b1159fe4686d552da763d (patch)
tree7fc170c3f01521d0102fdacc3ef905f73d25e94f /libraries/launcher/org/prismlauncher/EntryPoint.java
parent4abf3a20c6fe3763e57b76ec873cc2355d067b90 (diff)
downloadPrismLauncher-56d5035c63fc3146832b1159fe4686d552da763d.tar.gz
PrismLauncher-56d5035c63fc3146832b1159fe4686d552da763d.tar.bz2
PrismLauncher-56d5035c63fc3146832b1159fe4686d552da763d.zip
Fix the warnings properly
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
Diffstat (limited to 'libraries/launcher/org/prismlauncher/EntryPoint.java')
-rw-r--r--libraries/launcher/org/prismlauncher/EntryPoint.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/launcher/org/prismlauncher/EntryPoint.java b/libraries/launcher/org/prismlauncher/EntryPoint.java
index 5332bfc7..eab31cb1 100644
--- a/libraries/launcher/org/prismlauncher/EntryPoint.java
+++ b/libraries/launcher/org/prismlauncher/EntryPoint.java
@@ -70,6 +70,7 @@ import java.util.logging.Level;
import java.util.logging.Logger;
public final class EntryPoint {
+
private static final Logger LOGGER = Logger.getLogger("EntryPoint");
private EntryPoint() {
@@ -116,7 +117,6 @@ public final class EntryPoint {
String line;
while (preLaunchAction == PreLaunchAction.PROCEED) {
- // noinspection NestedAssignment
if ((line = reader.readLine()) != null)
preLaunchAction = parseLine(line, parameters);
else