diff --git a/src/java/com/threerings/presents/tools/ActionScriptSource.java b/src/java/com/threerings/presents/tools/ActionScriptSource.java index f32d74976..12fd63ef4 100644 --- a/src/java/com/threerings/presents/tools/ActionScriptSource.java +++ b/src/java/com/threerings/presents/tools/ActionScriptSource.java @@ -334,9 +334,9 @@ public class ActionScriptSource // ActionScript only supports one constructor so we find the one with // the most arguments and we make a note whether or not we need a no // argument constructor which we create using default arguments - Constructor mainctor = null; + Constructor mainctor = null; boolean needsNoArg = false; - for (Constructor ctor : jclass.getConstructors()) { + for (Constructor ctor : jclass.getConstructors()) { ActionScript asa = ctor.getAnnotation(ActionScript.class); if (asa != null && asa.omit()) { continue;