We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb4116a commit 5dfef54Copy full SHA for 5dfef54
src/main/java/org/truffleruby/language/methods/InternalMethod.java
@@ -173,8 +173,7 @@ private InternalMethod(
173
this.callTargetSupplier = callTargetSupplier;
174
175
/* 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
-
+ * asked for the call target, because this would be a deoptimization in getCallTarget(). */
178
if (callTarget == null && callTargetSupplier != null && callTargetSupplier.isAvailable()) {
179
this.callTarget = callTargetSupplier.get();
180
}
0 commit comments