Skip to content

Commit a610309

Browse files
committed
Fix VMPrimitiveNodes formatting
1 parent 092ed48 commit a610309

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/main/java/org/truffleruby/core/VMPrimitiveNodes.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public abstract static class CatchNode extends PrimitiveArrayArgumentsNode {
8787
@Child private YieldNode dispatchNode = YieldNode.create();
8888

8989
@Specialization
90-
protected Object doCatch(VirtualFrame frame, Object tag, DynamicObject block,
90+
protected Object doCatch(Object tag, DynamicObject block,
9191
@Cached BranchProfile catchProfile,
9292
@Cached("createBinaryProfile()") ConditionProfile matchProfile,
9393
@Cached ReferenceEqualNode referenceEqualNode) {
@@ -507,7 +507,6 @@ protected long updateHash(long hash, DynamicObject value) {
507507
return Hashing.update(hash, Layouts.BIGNUM.getValue(value).hashCode());
508508
}
509509

510-
511510
@Specialization(guards = "!isRubyNumber(value)")
512511
protected Object updateHash(long hash, Object value,
513512
@Cached("createPrivate()") CallDispatchHeadNode coerceToIntNode,
@@ -535,5 +534,7 @@ public abstract static class VMHashEndNode extends PrimitiveArrayArgumentsNode {
535534
protected long endHash(long hash) {
536535
return Hashing.end(hash);
537536
}
537+
538538
}
539+
539540
}

0 commit comments

Comments
 (0)