Closes gh-13130
This commit is contained in:
Johnny Lim
2018-05-11 15:58:20 +09:00
committed by Stephane Nicoll
parent 4683940423
commit 75e591e76e
10 changed files with 25 additions and 29 deletions

View File

@@ -33,7 +33,7 @@ class RunArguments {
private static final String[] NO_ARGS = {};
private final LinkedList<String> args = new LinkedList<>();
private final Deque<String> args = new LinkedList<>();
RunArguments(String arguments) {
this(parseArgs(arguments));