Minor in JS: deleted unused function

This commit is contained in:
Alexey Tsvetkov
2015-03-31 14:52:28 +03:00
parent a356847006
commit fafd4ef805
@@ -52,12 +52,4 @@ public final class AstUtil {
return nodesCopy;
}
@NotNull
public static JsFunctionScope toFunctionScope(JsScope scope) {
assert scope instanceof JsFunctionScope: "JsFunctionScope type is expected, but "
+ scope.getClass().getSimpleName() + " is found";
return (JsFunctionScope) scope;
}
}