This is an automated email from the ASF dual-hosted git repository.
paulk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git
The following commit(s) were added to refs/heads/master by this push:
new c8ed37ef49 minor naming tweaks
c8ed37ef49 is described below
commit c8ed37ef49d68b9bd57ef572d8ffea42ff57c70f
Author: Paul King <[email protected]>
AuthorDate: Thu Jan 22 15:32:05 2026 +1000
minor naming tweaks
---
src/main/java/org/codehaus/groovy/vmplugin/v8/IndyInterface.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/main/java/org/codehaus/groovy/vmplugin/v8/IndyInterface.java
b/src/main/java/org/codehaus/groovy/vmplugin/v8/IndyInterface.java
index 24f702c94e..ddb12975c6 100644
--- a/src/main/java/org/codehaus/groovy/vmplugin/v8/IndyInterface.java
+++ b/src/main/java/org/codehaus/groovy/vmplugin/v8/IndyInterface.java
@@ -383,7 +383,7 @@ public class IndyInterface {
/**
* Core method for indy method selection using runtime types.
- * @deprecated Use the new boothandle-based approach instead.
+ * @deprecated Use the new bootHandle-based approach instead.
*/
@Deprecated
public static Object selectMethod(CacheableCallSite callSite, Class<?>
sender, String methodName, int callID, Boolean safeNavigation, Boolean
thisCall, Boolean spreadCall, Object dummyReceiver, Object[] arguments) throws
Throwable {
@@ -406,7 +406,7 @@ public class IndyInterface {
}
if (callSite.getTarget() == defaultTarget) {
- // correct the stale methodhandle in the inline cache of callsite
+ // correct the stale methodHandle in the inline cache of callsite
// it is important but impacts the performance somehow when cache
misses frequently
doWithCallSite(callSite, arguments, (cs, receiver) ->
cs.put(receiver.getClass().getName(), mhw));
}