You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by su...@apache.org on 2017/01/28 16:08:16 UTC

[08/10] groovy git commit: javadoc typo

javadoc typo


Project: http://git-wip-us.apache.org/repos/asf/groovy/repo
Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/cb2e2c2c
Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/cb2e2c2c
Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/cb2e2c2c

Branch: refs/heads/parrot
Commit: cb2e2c2c36f40c35eedcc951305c95e3986c8d56
Parents: 4308f2a
Author: paulk <pa...@asert.com.au>
Authored: Sat Jan 28 15:39:06 2017 +1000
Committer: paulk <pa...@asert.com.au>
Committed: Sat Jan 28 15:39:06 2017 +1000

----------------------------------------------------------------------
 .../codehaus/groovy/classgen/asm/sc/StaticTypesCallSiteWriter.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/groovy/blob/cb2e2c2c/src/main/org/codehaus/groovy/classgen/asm/sc/StaticTypesCallSiteWriter.java
----------------------------------------------------------------------
diff --git a/src/main/org/codehaus/groovy/classgen/asm/sc/StaticTypesCallSiteWriter.java b/src/main/org/codehaus/groovy/classgen/asm/sc/StaticTypesCallSiteWriter.java
index a2900b4..c34be18 100644
--- a/src/main/org/codehaus/groovy/classgen/asm/sc/StaticTypesCallSiteWriter.java
+++ b/src/main/org/codehaus/groovy/classgen/asm/sc/StaticTypesCallSiteWriter.java
@@ -629,7 +629,7 @@ public class StaticTypesCallSiteWriter extends CallSiteWriter implements Opcodes
         if (trySubscript(receiver, message, arguments, rType, aType)) {
             return;
         }
-        // new try with flow type instead of declaration type
+        // now try with flow type instead of declaration type
         rType = receiver.getNodeMetaData(StaticTypesMarker.INFERRED_TYPE);
         if (rType!=null && trySubscript(receiver, message, arguments, rType, aType)) {
             return;