Skip to content

Commit 32be2ad

Browse files
committed
issue #84: Val Cannot be Reassigned
1 parent b31208a commit 32be2ad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/groovy/org/beryx/runtime/util/Util.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ class Util {
185185
@CompileDynamic
186186
static List<String> getDefaultJvmArgs(Project project) {
187187
try {
188-
return project.application?.applicationDefaultJvmArgs
188+
return new ArrayList(project.application?.applicationDefaultJvmArgs as List)
189189
} catch (Exception e) {
190190
return []
191191
}

0 commit comments

Comments
 (0)