3f9fa324 by Adam Heath

Make the Interface class final.

1 parent 4e00b21d
...@@ -27,7 +27,7 @@ public abstract class Console<C extends RhinoContainer> extends ScriptableObject ...@@ -27,7 +27,7 @@ public abstract class Console<C extends RhinoContainer> extends ScriptableObject
27 return sargs; 27 return sargs;
28 } 28 }
29 29
30 public static class Interface { 30 public static final class Interface {
31 public static void log(Context cx, Scriptable thisObj, Object[] args, Function funObj) { 31 public static void log(Context cx, Scriptable thisObj, Object[] args, Function funObj) {
32 ((Console) thisObj).log(cx, args, funObj); 32 ((Console) thisObj).log(cx, args, funObj);
33 } 33 }
......