8041253: Avoid redundant synonyms of NO_TEST

Reviewed-by: ksrini
This commit is contained in:
Jonathan Gibbons 2014-04-22 17:41:11 -07:00
parent 0a5665b53a
commit 187dbd343c
67 changed files with 81 additions and 183 deletions

View file

@ -36,7 +36,6 @@
public class TestEncoding extends JavadocTester {
private static final String BUG_ID = "4661481";
private static final String[][] TEST = NO_TEST;
//If ??? is found in the output, the source file was not read with the correct encoding setting.
private static final String[][] NEGATED_TEST = {
@ -54,7 +53,7 @@ public class TestEncoding extends JavadocTester {
*/
public static void main(String[] args) {
TestEncoding tester = new TestEncoding();
tester.run(ARGS, TEST, NEGATED_TEST);
tester.run(ARGS, NO_TEST, NEGATED_TEST);
tester.printSummary();
}