This is an automated email from the ASF dual-hosted git repository. blackdrag pushed a commit to branch feature/indy_perf in repository https://gitbox.apache.org/repos/asf/groovy.git
commit 049ea459ec7658f321636b989111e7864d5bc44d Author: Jochen Theodorou <[email protected]> AuthorDate: Wed Jan 3 14:03:59 2024 +0100 changing callsite for direct indy to use mutable --- src/test/indy/perf/IndyDirectTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/indy/perf/IndyDirectTest.java b/src/test/indy/perf/IndyDirectTest.java index 984a0cc239..adaf97726f 100644 --- a/src/test/indy/perf/IndyDirectTest.java +++ b/src/test/indy/perf/IndyDirectTest.java @@ -45,7 +45,7 @@ public class IndyDirectTest { } catch (NoSuchMethodException | IllegalAccessException e) { throw new RuntimeException(e); } - return new ConstantCallSite(handle); + return new MutableCallSite(handle); } @Test
