src/share/classes/com/sun/tools/javac/tree/TreeScanner.java

Print this page

        

@@ -270,11 +270,11 @@
     public void visitTypeApply(JCTypeApply tree) {
         scan(tree.clazz);
         scan(tree.arguments);
     }
 
-    public void visitTypeDisjunction(JCTypeDisjunction tree) {
+    public void visitTypeUnion(JCTypeUnion tree) {
         scan(tree.alternatives);
     }
 
     public void visitTypeParameter(JCTypeParameter tree) {
         scan(tree.bounds);