Commit ce4077a
committed
Replace a split method by a StringTokenizer clas to parse run param.
In current implementation for split "Run Paramteres" of project
is used split method that split a String by space. I that not handle
qouted parameters with spaces and split it by space that not allow
to pass the text as parameter with spaces.
To handle this situation the split method are replaced by use the
StringTokenizer class, that support single (`) and duble (") quote
that arrond the tekst as a params.
Task: #1231 parent 5aa8f1f commit ce4077a
File tree
1 file changed
+3
-2
lines changed- src/main/java/org/netbeans/modules/python/actions
1 file changed
+3
-2
lines changedLines changed: 3 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| 10 | + | |
| 11 | + | |
10 | 12 | | |
11 | 13 | | |
12 | 14 | | |
| |||
57 | 59 | | |
58 | 60 | | |
59 | 61 | | |
60 | | - | |
61 | | - | |
| 62 | + | |
62 | 63 | | |
63 | 64 | | |
64 | 65 | | |
| |||
0 commit comments