Remove redundant syntax

This commit is contained in:
Gary Gregory 2024-09-12 10:14:26 -04:00
parent e3552a530d
commit a2706e7c96
1 changed files with 6 additions and 6 deletions

View File

@ -47,12 +47,12 @@ public class CharEncodingTest extends AbstractLangTest {
@Test
public void testMustBeSupportedJava1_3_1_and_above() {
this.assertSupportedEncoding(CharEncoding.ISO_8859_1);
this.assertSupportedEncoding(CharEncoding.US_ASCII);
this.assertSupportedEncoding(CharEncoding.UTF_16);
this.assertSupportedEncoding(CharEncoding.UTF_16BE);
this.assertSupportedEncoding(CharEncoding.UTF_16LE);
this.assertSupportedEncoding(CharEncoding.UTF_8);
assertSupportedEncoding(CharEncoding.ISO_8859_1);
assertSupportedEncoding(CharEncoding.US_ASCII);
assertSupportedEncoding(CharEncoding.UTF_16);
assertSupportedEncoding(CharEncoding.UTF_16BE);
assertSupportedEncoding(CharEncoding.UTF_16LE);
assertSupportedEncoding(CharEncoding.UTF_8);
}
@Test