Add strangely missing semicolon.

This commit is contained in:
hns 2003-07-28 15:56:33 +00:00
parent 1e16d82ba9
commit 4485040fb3

View file

@ -194,7 +194,7 @@ public class RhinoEngine implements ScriptingEngine {
Scriptable arr = context.newObject(global, "Array");
List path = (List) v;
int length = path.size();
Scriptable[] wrapped = new Scriptable[length]
Scriptable[] wrapped = new Scriptable[length];
// Move through the path list and set the path array.
for (int j = 0; j < length; j++) {