mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noel Rouvignac
26.37.2014 e1f4e9b2866160d0c691e16e7f612df72891e483
Removed now unnecessary checkstyle directives
2 files modified
4 ■■■■ changed files
opendj-core/src/test/java/org/forgerock/opendj/ldap/ByteStringBuilderTestCase.java 2 ●●●●● patch | view | raw | blame | history
opendj-core/src/test/java/org/forgerock/opendj/ldap/schema/SchemaUtilsTest.java 2 ●●●●● patch | view | raw | blame | history
opendj-core/src/test/java/org/forgerock/opendj/ldap/ByteStringBuilderTestCase.java
@@ -45,11 +45,9 @@
@SuppressWarnings("javadoc")
public class ByteStringBuilderTestCase extends ByteSequenceTestCase {
    //@Checkstyle:off
    private static byte b(int i) {
        return (byte) i;
    }
    //@Checkstyle:on
    private static final byte[] EIGHT_BYTES = new byte[] { b(0x01), b(0x02), b(0x03),
        b(0x04), b(0x05), b(0x06), b(0x07), b(0x08) };
opendj-core/src/test/java/org/forgerock/opendj/ldap/schema/SchemaUtilsTest.java
@@ -157,11 +157,9 @@
        };
    }
    //@Checkstyle:off
    private byte b(int i) {
        return (byte) i;
    }
    //@Checkstyle:on
    @Test(dataProvider = "stringProvider")
    public void testNormalizeStringProvider(String value, boolean trim, boolean foldCase, String expected)