Author: dbrosius
Date: Tue Sep  1 01:20:17 2015
New Revision: 1700377

URL: http://svn.apache.org/r1700377
Log:
fix AnnotationEntryValue.stringifyValue to return something other than the hash

Modified:
    
commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/AnnotationEntry.java

Modified: 
commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/AnnotationEntry.java
URL: 
http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/AnnotationEntry.java?rev=1700377&r1=1700376&r2=1700377&view=diff
==============================================================================
--- 
commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/AnnotationEntry.java
 (original)
+++ 
commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/AnnotationEntry.java
 Tue Sep  1 01:20:17 2015
@@ -148,6 +148,10 @@ public class AnnotationEntry implements
         }
         return result.toString();
     }
+    
+    public String toString() {
+        return toShortString();
+    }
 
     public static AnnotationEntry[] createAnnotationEntries(Attribute[] attrs) 
{
         // Find attributes that contain annotation data


Reply via email to