Skip to content

Commit 6e26093

Browse files
committed
Mark propertyValue as final
🚀
1 parent 6b8aafa commit 6e26093

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/prismlauncher/javacheck/JavaCheck.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public static void main(final String[] args) {
1111
boolean missingSome = false;
1212

1313
for (final String property : args) {
14-
String propertyValue = System.getProperty(property);
14+
final String propertyValue = System.getProperty(property);
1515

1616
if (propertyValue == null) {
1717
missingSome = true;

0 commit comments

Comments
 (0)