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.
2 parents 19c8b1e + 9193dbd commit 1acf9c5Copy full SHA for 1acf9c5
app/src/processing/app/Processing.kt
@@ -52,7 +52,7 @@ class LSP: SuspendingCliktCommand("lsp"){
52
// Indirect invocation since app does not depend on java mode
53
Class.forName("processing.mode.java.lsp.PdeLanguageServer")
54
.getMethod("main", Array<String>::class.java)
55
- .invoke(null, *arrayOf<Any>(emptyList<String>()))
+ .invoke(null, arrayOf<String>())
56
} catch (e: Exception) {
57
throw InternalError("Failed to invoke main method", e)
58
}
@@ -87,4 +87,4 @@ class LegacyCLI(val args: Array<String>): SuspendingCliktCommand( "cli"){
87
88
89
90
-}
+}
0 commit comments