ICU-5082 TestFmwk.create throws exception with zero length argument.

X-SVN-Rev: 19292
This commit is contained in:
Doug Felt 2006-02-26 05:11:21 +00:00
parent 8ada4896ee
commit 7caa7e2556

View File

@ -1018,9 +1018,9 @@ public class TestFmwk extends AbstractTestLog {
String[] args = null;
if (arglist != null && arglist.length() > 0) {
//#ifndef FOUNDATION
args = arglist.split("\\s"), log);
args = arglist.split("\\s");
//#else
//## args = Utility.split(arglist, '\u0020'), log);
//## args = Utility.split(arglist, '\u0020');
//#endif
}
return create(args, log);