langtools/src/share/classes/com/sun/tools/javac/tree/Pretty.java
changeset 14725 65836e833f59
parent 14547 86d8d242b0c4
child 15044 b3a4a1002b19
--- a/langtools/src/share/classes/com/sun/tools/javac/tree/Pretty.java	Fri Nov 30 15:14:36 2012 +0000
+++ b/langtools/src/share/classes/com/sun/tools/javac/tree/Pretty.java	Fri Nov 30 15:14:48 2012 +0000
@@ -1249,6 +1249,14 @@
         }
     }
 
+    public void visitTypeIntersection(JCTypeIntersection tree) {
+        try {
+            printExprs(tree.bounds, " & ");
+        } catch (IOException e) {
+            throw new UncheckedIOException(e);
+        }
+    }
+
     public void visitTypeParameter(JCTypeParameter tree) {
         try {
             print(tree.name);