Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -1574,8 +1574,7 @@ static String[] parseStrings(String value) {
}
current++;
}
String[] retValue = new String[temp.size()];
temp.toArray(retValue);
String[] retValue = temp.toArray(new String[0]);
return retValue;
}

Expand Down