Add strangely missing semicolon.
This commit is contained in:
parent
1e16d82ba9
commit
4485040fb3
1 changed files with 1 additions and 1 deletions
|
@ -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++) {
|
||||
|
|
Loading…
Add table
Reference in a new issue