Skip to content

Commit 96de904

Browse files
authored
Fix return value
1 parent 92f3185 commit 96de904

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/github/jebeaudet/idea/jvm/util/JVMArgumentsSetterPersistence.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public static void setJvmParameterList(String jvmParameterList)
7373
propertiesComponent.setValue(KEY_JVM_PARAMETER_LIST_V2, jvmParameterList);
7474
}
7575

76-
private static void isConfigNotMigrated()
76+
private static boolean isConfigNotMigrated()
7777
{
7878
String parametersV1 = propertiesComponent.getValue(KEY_JVM_PARAMETER_LIST);
7979
String parametersV2 = propertiesComponent.getValue(KEY_JVM_PARAMETER_LIST_V2);

0 commit comments

Comments
 (0)