File tree 2 files changed +10
-8
lines changed
2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,6 @@ tools/javac/modules/SourceInSymlinkTest.java
55
55
# javap
56
56
57
57
tools/javap/output/RepeatingTypeAnnotations.java 8057687 generic-all emit correct byte code an attributes for type annotations
58
- tools/javap/T6587786.java 8195589 generic-all T6587786.java failed after JDK-8189997
59
58
60
59
###########################################################################
61
60
#
Original file line number Diff line number Diff line change @@ -36,18 +36,21 @@ public static void main(String[] args) throws Exception {
36
36
}
37
37
38
38
public void run () throws IOException {
39
- javap ("com.sun. javadoc.Doc " , "com.sun.crypto.provider.ai " );
40
- javap ("com.sun.crypto.provider.ai " , "com.sun. javadoc.ClassDoc " );
39
+ javap ("jdk. javadoc.doclet.Doclet " , "java.util.List " );
40
+ javap ("java.util.List " , "jdk. javadoc.doclet.StandardDoclet " );
41
41
}
42
42
43
43
void javap (String ... args ) {
44
44
StringWriter sw = new StringWriter ();
45
45
PrintWriter out = new PrintWriter (sw );
46
46
//sun.tools.javap.Main.entry(args);
47
- int rc = com .sun .tools .javap .Main .run (args , out );
48
- if (rc != 0 )
49
- throw new Error ("javap failed. rc=" + rc );
50
- out .close ();
51
- System .out .println (sw .toString ());
47
+ try {
48
+ int rc = com .sun .tools .javap .Main .run (args , out );
49
+ if (rc != 0 )
50
+ throw new Error ("javap failed. rc=" + rc );
51
+ } finally {
52
+ out .close ();
53
+ System .out .println (sw .toString ());
54
+ }
52
55
}
53
56
}
You can’t perform that action at this time.
0 commit comments