]> source.dussan.org Git - aspectj.git/commitdiff
fixed bug whereby we were adding a String into an array of Signature objects
authoracolyer <acolyer>
Thu, 11 Aug 2005 10:35:01 +0000 (10:35 +0000)
committeracolyer <acolyer>
Thu, 11 Aug 2005 10:35:01 +0000 (10:35 +0000)
bcel-builder/src/org/aspectj/apache/bcel/classfile/GenericSignatureParser.java

index 34c9d6c29e74b583a28ad0c42ce61031690da15f..f6968e1480a13e2ee6891d7aa2fcf29fcd88cd62 100644 (file)
@@ -213,7 +213,7 @@ public class GenericSignatureParser {
                                          ret.append(".");
                                          SimpleClassTypeSignature sig = parseSimpleClassTypeSignature();
                                          ret.append(sig.toString());
-                                         nestedTypeList.add(ret);                                
+                                         nestedTypeList.add(sig);                                
                                  }
                                  nestedTypes = new SimpleClassTypeSignature[nestedTypeList.size()];
                                  nestedTypeList.toArray(nestedTypes);