You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by jw...@apache.org on 2016/10/12 04:07:26 UTC

groovy git commit: add missing import (problem with merge for ca0e98d956)

Repository: groovy
Updated Branches:
  refs/heads/GROOVY_2_4_X ca0e98d95 -> 144019950


add missing import (problem with merge for ca0e98d956)


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

Branch: refs/heads/GROOVY_2_4_X
Commit: 14401995073751f63af80b52ce861f6fe389993a
Parents: ca0e98d
Author: John Wagenleitner <jw...@apache.org>
Authored: Tue Oct 11 21:03:32 2016 -0700
Committer: John Wagenleitner <jw...@apache.org>
Committed: Tue Oct 11 21:03:32 2016 -0700

----------------------------------------------------------------------
 src/main/org/codehaus/groovy/runtime/InvokerHelper.java | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/groovy/blob/14401995/src/main/org/codehaus/groovy/runtime/InvokerHelper.java
----------------------------------------------------------------------
diff --git a/src/main/org/codehaus/groovy/runtime/InvokerHelper.java b/src/main/org/codehaus/groovy/runtime/InvokerHelper.java
index 144662e..069b926 100644
--- a/src/main/org/codehaus/groovy/runtime/InvokerHelper.java
+++ b/src/main/org/codehaus/groovy/runtime/InvokerHelper.java
@@ -19,6 +19,7 @@
 package org.codehaus.groovy.runtime;
 
 import groovy.lang.*;
+import org.codehaus.groovy.reflection.ClassInfo;
 import org.codehaus.groovy.runtime.metaclass.MetaClassRegistryImpl;
 import org.codehaus.groovy.runtime.metaclass.MissingMethodExecutionFailed;
 import org.codehaus.groovy.runtime.powerassert.PowerAssertionError;