langtools/src/share/classes/com/sun/tools/javac/tree/TreeCopier.java
changeset 7072 4863847e93a5
parent 6148 3a8158299c51
child 7074 0183c3f9614e
--- a/langtools/src/share/classes/com/sun/tools/javac/tree/TreeCopier.java	Tue Oct 19 11:47:17 2010 +0530
+++ b/langtools/src/share/classes/com/sun/tools/javac/tree/TreeCopier.java	Tue Oct 19 15:02:48 2010 -0700
@@ -71,12 +71,12 @@
         return lb.toList();
     }
 
-    public JCTree visitAnnotatedType(AnnotatedTypeTree node, P p) {
-        JCAnnotatedType t = (JCAnnotatedType) node;
-        List<JCTypeAnnotation> annotations = copy(t.annotations, p);
-        JCExpression underlyingType = copy(t.underlyingType, p);
-        return M.at(t.pos).AnnotatedType(annotations, underlyingType);
-    }
+//308    public JCTree visitAnnotatedType(AnnotatedTypeTree node, P p) {
+//308        JCAnnotatedType t = (JCAnnotatedType) node;
+//308        List<JCTypeAnnotation> annotations = copy(t.annotations, p);
+//308        JCExpression underlyingType = copy(t.underlyingType, p);
+//308        return M.at(t.pos).AnnotatedType(annotations, underlyingType);
+//308    }
 
     public JCTree visitAnnotation(AnnotationTree node, P p) {
         JCAnnotation t = (JCAnnotation) node;