diff -r 01eabcd240e9 -r 7755f47542a0 src/share/classes/com/sun/tools/javac/tree/Pretty.java --- a/src/share/classes/com/sun/tools/javac/tree/Pretty.java Fri Oct 22 14:04:33 2010 -0700 +++ b/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); }