From commits-return-10532-archive-asf-public=cust-asf.ponee.io@groovy.apache.org Sat Jan 11 18:04:26 2020 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id CA7CE18064C for ; Sat, 11 Jan 2020 19:04:25 +0100 (CET) Received: (qmail 14512 invoked by uid 500); 11 Jan 2020 18:04:25 -0000 Mailing-List: contact commits-help@groovy.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@groovy.apache.org Delivered-To: mailing list commits@groovy.apache.org Received: (qmail 14503 invoked by uid 99); 11 Jan 2020 18:04:25 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 11 Jan 2020 18:04:25 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 8094681F11; Sat, 11 Jan 2020 18:04:24 +0000 (UTC) Date: Sat, 11 Jan 2020 18:04:24 +0000 To: "commits@groovy.apache.org" Subject: [groovy] branch master updated: Tweak method signature MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <157876586420.1376.6631377366477847848@gitbox.apache.org> From: sunlan@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: groovy X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 55646d5ec48a56f25aa00cbc17b6f31a4058b3d7 X-Git-Newrev: 6da58fbaefa222f2424b9ef9d35236d1e2f16283 X-Git-Rev: 6da58fbaefa222f2424b9ef9d35236d1e2f16283 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. sunlan 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 6da58fb Tweak method signature 6da58fb is described below commit 6da58fbaefa222f2424b9ef9d35236d1e2f16283 Author: Daniel Sun AuthorDate: Sun Jan 12 02:04:08 2020 +0800 Tweak method signature --- src/main/java/org/codehaus/groovy/vmplugin/v7/IndyInterface.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/codehaus/groovy/vmplugin/v7/IndyInterface.java b/src/main/java/org/codehaus/groovy/vmplugin/v7/IndyInterface.java index 0b42ef6..0eb6fa4 100644 --- a/src/main/java/org/codehaus/groovy/vmplugin/v7/IndyInterface.java +++ b/src/main/java/org/codehaus/groovy/vmplugin/v7/IndyInterface.java @@ -313,7 +313,7 @@ public class IndyInterface { ); } - private static T doWithCallSite(MutableCallSite callSite, Object[] arguments, BiFunction f) { + private static T doWithCallSite(MutableCallSite callSite, Object[] arguments, BiFunction f) { if (callSite instanceof CacheableCallSite) { CacheableCallSite cacheableCallSite = (CacheableCallSite) callSite; Object receiver = arguments[0];