langtools/src/share/classes/com/sun/tools/javac/tree/Pretty.java
changeset 7074 0183c3f9614e
parent 6148 3a8158299c51
child 7681 1f0819a3341f
--- a/langtools/src/share/classes/com/sun/tools/javac/tree/Pretty.java	Fri Oct 22 14:04:33 2010 -0700
+++ b/langtools/src/share/classes/com/sun/tools/javac/tree/Pretty.java	Tue Oct 26 14:29:48 2010 -0700
@@ -1195,9 +1195,9 @@
         }
     }
 
-    public void visitTypeDisjoint(JCTypeDisjoint tree) {
+    public void visitTypeDisjunction(JCTypeDisjunction tree) {
         try {
-            printExprs(tree.components, " | ");
+            printExprs(tree.alternatives, " | ");
         } catch (IOException e) {
             throw new UncheckedIOException(e);
         }