You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by el...@apache.org on 2015/05/28 20:10:05 UTC

[03/10] accumulo git commit: ACCUMULO-3856 Remove some trailing whitespace (checkstyle failure)

ACCUMULO-3856 Remove some trailing whitespace (checkstyle failure)


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/362b8ac3
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/362b8ac3
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/362b8ac3

Branch: refs/heads/1.7
Commit: 362b8ac334dec7d4be3d09d949972957ebb6c37a
Parents: 11f108e
Author: Josh Elser <el...@apache.org>
Authored: Thu May 28 14:09:20 2015 -0400
Committer: Josh Elser <el...@apache.org>
Committed: Thu May 28 14:09:20 2015 -0400

----------------------------------------------------------------------
 .../test/java/org/apache/accumulo/proxy/ProxyServerTest.java   | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/362b8ac3/proxy/src/test/java/org/apache/accumulo/proxy/ProxyServerTest.java
----------------------------------------------------------------------
diff --git a/proxy/src/test/java/org/apache/accumulo/proxy/ProxyServerTest.java b/proxy/src/test/java/org/apache/accumulo/proxy/ProxyServerTest.java
index ed4f313..f656c32 100644
--- a/proxy/src/test/java/org/apache/accumulo/proxy/ProxyServerTest.java
+++ b/proxy/src/test/java/org/apache/accumulo/proxy/ProxyServerTest.java
@@ -48,7 +48,7 @@ public class ProxyServerTest {
     MutationsRejectedException mre = EasyMock.createMock(MutationsRejectedException.class);
 
     final ByteBuffer login = ByteBuffer.wrap("my_login".getBytes(UTF_8));
-    final String tableName = "table1"; 
+    final String tableName = "table1";
     final Map<ByteBuffer,List<ColumnUpdate>> cells = new HashMap<ByteBuffer,List<ColumnUpdate>>();
 
     EasyMock.expect(server.getWriter(login, tableName, null)).andReturn(bwpe);
@@ -83,7 +83,7 @@ public class ProxyServerTest {
     MutationsRejectedException mre = EasyMock.createMock(MutationsRejectedException.class);
 
     final ByteBuffer login = ByteBuffer.wrap("my_login".getBytes(UTF_8));
-    final String tableName = "table1"; 
+    final String tableName = "table1";
     final Map<ByteBuffer,List<ColumnUpdate>> cells = new HashMap<ByteBuffer,List<ColumnUpdate>>();
 
     EasyMock.expect(server.getWriter(login, tableName, null)).andReturn(bwpe);
@@ -110,5 +110,5 @@ public class ProxyServerTest {
 
     EasyMock.verify(server, writer, mre);
   }
-  
+
 }