HDFS-13311. RBF: TestRouterAdminCLI#testCreateInvalidEntry fails on Windows. Contributed by Inigo Goiri

This commit is contained in:
Virajith Jalaparti 2018-04-16 15:55:00 -07:00
parent 49f9acae40
commit 827d8593a5
1 changed files with 3 additions and 0 deletions

View File

@ -525,6 +525,9 @@ public class GenericOptionsParser {
}
List<String> newArgs = new ArrayList<String>(args.length);
for (int i=0; i < args.length; i++) {
if (args[i] == null) {
continue;
}
String prop = null;
if (args[i].equals("-D")) {
newArgs.add(args[i]);