Using ScriptRuntime.emptyStrings to return emoty var array

This commit is contained in:
igor%mir2.org 2003-08-26 15:45:15 +00:00
Родитель a9f4d1e47b
Коммит 4047861bf2
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -130,7 +130,11 @@ public class ScriptOrFnNode extends Node {
}
public final String[] getParamAndVarNames() {
String[] array = new String[itsVariables.size()];
int N = itsVariables.size();
if (N == 0) {
return ScriptRuntime.emptyStrings;
}
String[] array = new String[N];
itsVariables.toArray(array);
return array;
}