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

Yannick Lecaillez
07.39.2016 09f4651f340aee430254c8b367cb9830162efe55
opendj-grizzly/src/test/java/org/forgerock/opendj/grizzly/ASN1BufferWriterTestCase.java
@@ -35,7 +35,7 @@
@Test
public class ASN1BufferWriterTestCase extends ASN1WriterTestCase {
    private final ASN1BufferWriter writer = new ASN1BufferWriter(MemoryManager.DEFAULT_MEMORY_MANAGER);
    private final ASN1BufferWriter writer = new ASN1BufferWriter();
    @Override
    protected byte[] getEncodedBytes() throws IOException, DecodeException {
@@ -53,7 +53,7 @@
    @Override
    protected ASN1Writer getWriter() throws IOException {
        writer.flush();
        writer.reset();
        writer.reset(MemoryManager.DEFAULT_MEMORY_MANAGER);
        return writer;
    }
}