--- a/langtools/test/com/sun/javadoc/testThrowsHead/TestThrowsHead.java Tue Apr 22 17:41:11 2014 -0700
+++ b/langtools/test/com/sun/javadoc/testThrowsHead/TestThrowsHead.java Tue Apr 22 17:57:40 2014 -0700
@@ -21,7 +21,7 @@
* questions.
*/
-/**
+/*
* @test
* @bug 4530727 8026567
* @summary When an exception is declared in the method signature but
@@ -36,12 +36,11 @@
public class TestThrowsHead extends JavadocTester {
- private static final String BUG_ID = "4530727";
private static final String[][] TEST = {
- {BUG_ID + "/C.html", "<dt><span class=\"throwsLabel\">Throws:</span>"}
+ { "C.html", "<dt><span class=\"throwsLabel\">Throws:</span>"}
};
private static final String[] ARGS = new String[] {
- "-d", BUG_ID, SRC_DIR + "/C.java"
+ "-d", OUTPUT_DIR, SRC_DIR + "/C.java"
};
/**
@@ -53,18 +52,4 @@
tester.run(ARGS, TEST, NO_TEST);
tester.printSummary();
}
-
- /**
- * {@inheritDoc}
- */
- public String getBugId() {
- return BUG_ID;
- }
-
- /**
- * {@inheritDoc}
- */
- public String getBugName() {
- return getClass().getName();
- }
}