From 66be6c035cb58baccacb6831f7403d5c2247f4b2 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Mon, 20 Oct 2014 12:46:58 +0000
Subject: [PATCH] AutoRefactored modifier's order + removed useless modifiers implied by context
---
opendj-grizzly/src/main/java/org/forgerock/opendj/grizzly/ASN1BufferWriter.java | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/opendj-grizzly/src/main/java/org/forgerock/opendj/grizzly/ASN1BufferWriter.java b/opendj-grizzly/src/main/java/org/forgerock/opendj/grizzly/ASN1BufferWriter.java
index 598031a..45e6911 100644
--- a/opendj-grizzly/src/main/java/org/forgerock/opendj/grizzly/ASN1BufferWriter.java
+++ b/opendj-grizzly/src/main/java/org/forgerock/opendj/grizzly/ASN1BufferWriter.java
@@ -144,13 +144,13 @@
}
private interface SequenceBuffer {
- public SequenceBuffer endSequence() throws IOException;
+ SequenceBuffer endSequence() throws IOException;
- public SequenceBuffer startSequence(byte type) throws IOException;
+ SequenceBuffer startSequence(byte type) throws IOException;
- public void writeByte(byte b) throws IOException;
+ void writeByte(byte b) throws IOException;
- public void writeByteArray(byte[] bs, int offset, int length) throws IOException;
+ void writeByteArray(byte[] bs, int offset, int length) throws IOException;
}
private static final LocalizedLogger logger = LocalizedLogger.getLoggerForThisClass();
--
Gitblit v1.10.0