We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b8aafa commit 6e26093Copy full SHA for 6e26093
src/main/java/org/prismlauncher/javacheck/JavaCheck.java
@@ -11,7 +11,7 @@ public static void main(final String[] args) {
11
boolean missingSome = false;
12
13
for (final String property : args) {
14
- String propertyValue = System.getProperty(property);
+ final String propertyValue = System.getProperty(property);
15
16
if (propertyValue == null) {
17
missingSome = true;
0 commit comments