Skip to content

Commit 5dfef54

Browse files
committed
Tweaks
1 parent fb4116a commit 5dfef54

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/org/truffleruby/language/methods/InternalMethod.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,7 @@ private InternalMethod(
173173
this.callTargetSupplier = callTargetSupplier;
174174

175175
/* If the call target supplier has already been run, then don't wait until the first time the InternalMethod is
176-
* asked for the call target, because this would be a deoptimisation in getCallTarget. */
177-
176+
* asked for the call target, because this would be a deoptimization in getCallTarget(). */
178177
if (callTarget == null && callTargetSupplier != null && callTargetSupplier.isAvailable()) {
179178
this.callTarget = callTargetSupplier.get();
180179
}

0 commit comments

Comments
 (0)