Repository: accumulo Updated Branches: refs/heads/master 739f906cf -> 285893c34
ACCUMULO-4113 fix formatting issue Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/285893c3 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/285893c3 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/285893c3 Branch: refs/heads/master Commit: 285893c34de6a2f3d30a0c2f25398207f18b99ca Parents: 739f906 Author: Keith Turner <ktur...@apache.org> Authored: Wed Jan 20 17:36:48 2016 -0500 Committer: Keith Turner <ktur...@apache.org> Committed: Wed Jan 20 17:36:48 2016 -0500 ---------------------------------------------------------------------- .../main/java/org/apache/accumulo/core/util/ByteBufferUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/285893c3/core/src/main/java/org/apache/accumulo/core/util/ByteBufferUtil.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/accumulo/core/util/ByteBufferUtil.java b/core/src/main/java/org/apache/accumulo/core/util/ByteBufferUtil.java index 006755f..de889a4 100644 --- a/core/src/main/java/org/apache/accumulo/core/util/ByteBufferUtil.java +++ b/core/src/main/java/org/apache/accumulo/core/util/ByteBufferUtil.java @@ -105,7 +105,7 @@ public class ByteBufferUtil { } } - public static ByteArrayInputStream toByteArrayInputStream(ByteBuffer buffer){ + public static ByteArrayInputStream toByteArrayInputStream(ByteBuffer buffer) { if (buffer.hasArray()) { return new ByteArrayInputStream(buffer.array(), buffer.arrayOffset() + buffer.position(), buffer.remaining()); } else {