You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@velocity.apache.org by nb...@apache.org on 2010/04/20 18:04:56 UTC

svn commit: r935975 - /velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/MethodMap.java

Author: nbubna
Date: Tue Apr 20 16:04:55 2010
New Revision: 935975

URL: http://svn.apache.org/viewvc?rev=935975&view=rev
Log:
comment out sysout used to debug ambiguous exceptions

Modified:
    velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/MethodMap.java

Modified: velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/MethodMap.java
URL: http://svn.apache.org/viewvc/velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/MethodMap.java?rev=935975&r1=935974&r2=935975&view=diff
==============================================================================
--- velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/MethodMap.java (original)
+++ velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/MethodMap.java Tue Apr 20 16:04:55 2010
@@ -209,7 +209,7 @@ public class MethodMap
                 
         if (equivalentMatches != null)
         {
-            System.out.println("ambiguous: "+equivalentMatches);
+            //System.out.println("ambiguous: "+equivalentMatches);//for debugging only
             throw new AmbiguousException();
         }
         return bestMatch;