File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/main/java/com/tang/intellij/lua/debugger/app Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 3131import com .intellij .openapi .util .SystemInfoRt ;
3232import com .intellij .openapi .util .WriteExternalException ;
3333import com .intellij .openapi .vfs .VirtualFile ;
34+ import com .intellij .util .execution .ParametersListUtil ;
3435import com .tang .intellij .lua .debugger .DebuggerType ;
3536import com .tang .intellij .lua .debugger .IRemoteConfiguration ;
3637import com .tang .intellij .lua .debugger .LuaCommandLineState ;
@@ -152,7 +153,7 @@ public String getParameters() {
152153 public String [] getParametersArray () {
153154 ArrayList <String > list = new ArrayList <>();
154155 if (params != null && !params .isEmpty ()) {
155- String [] strings = params . split ( " \\ s+" );
156+ String [] strings = ParametersListUtil . parseToArray ( params );
156157 list .addAll (Arrays .asList (strings ));
157158 }
158159 if (file != null && !file .isEmpty ()) {
You can’t perform that action at this time.
0 commit comments