]> source.dussan.org Git - aspectj.git/commitdiff
refactoring
authoraclement <aclement>
Wed, 9 Sep 2009 23:13:20 +0000 (23:13 +0000)
committeraclement <aclement>
Wed, 9 Sep 2009 23:13:20 +0000 (23:13 +0000)
bcel-builder/src/org/aspectj/apache/bcel/generic/ClassGen.java

index 1fcd4d53e1214fc372bd94731695ec1d5f51fc36..8c8504eafbd0b13660276a77a06801e24258654b 100644 (file)
@@ -84,7 +84,7 @@ import org.aspectj.apache.bcel.classfile.annotation.RuntimeVisibleAnnotations;
  * Template class for building up a java class. May be initialized with an existing java class (file).
  * 
  * @see JavaClass
- * @version $Id: ClassGen.java,v 1.12 2009/09/09 22:18:20 aclement Exp $
+ * @version $Id: ClassGen.java,v 1.13 2009/09/09 23:13:20 aclement Exp $
  * @author <A HREF="mailto:markus.dahm@berlin.de">M. Dahm</A>
  * 
  *         Upgraded, Andy Clement 9th Mar 06 - calculates SUID
@@ -200,7 +200,7 @@ public class ClassGen extends Modifiers implements Cloneable {
         * Look for attributes representing annotations and unpack them.
         */
        private AnnotationGen[] unpackAnnotations(Attribute[] attrs) {
-               List /* AnnotationGen */<AnnotationGen> annotationGenObjs = new ArrayList<AnnotationGen>();
+               List<AnnotationGen> annotationGenObjs = new ArrayList<AnnotationGen>();
                for (int i = 0; i < attrs.length; i++) {
                        Attribute attr = attrs[i];
                        if (attr instanceof RuntimeVisibleAnnotations) {