Skip to content

Commit ab2b35d

Browse files
committed
Apply spotless formatting to IteratorLikeIterable
1 parent 7335152 commit ab2b35d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

rhino/src/main/java/org/mozilla/javascript/IteratorLikeIterable.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,8 @@ public boolean hasNext() {
108108
Object iterResult = nextMethod.call(cx, scope, iterator, ScriptRuntime.emptyArgs);
109109

110110
if (!(iterResult instanceof Scriptable)) {
111-
throw ScriptRuntime.typeErrorById("msg.arg.not.object", ScriptRuntime.typeof(iterResult));
111+
throw ScriptRuntime.typeErrorById(
112+
"msg.arg.not.object", ScriptRuntime.typeof(iterResult));
112113
}
113114

114115
Scriptable result = (Scriptable) iterResult;

0 commit comments

Comments
 (0)