Repository: accumulo
Updated Branches:
  refs/heads/master 9a873fc91 -> 0af793b54


ACCUMULO-2487 eliminate warnings about unused vars


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

Branch: refs/heads/master
Commit: edbf231caa2477cf30e5efab3d7753d0d4f23dec
Parents: 0a5f966
Author: Eric C. Newton <eric.new...@gmail.com>
Authored: Mon Mar 24 10:30:19 2014 -0400
Committer: Eric C. Newton <eric.new...@gmail.com>
Committed: Mon Mar 24 10:30:19 2014 -0400

----------------------------------------------------------------------
 .../src/test/java/org/apache/accumulo/core/data/ValueTest.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/edbf231c/core/src/test/java/org/apache/accumulo/core/data/ValueTest.java
----------------------------------------------------------------------
diff --git a/core/src/test/java/org/apache/accumulo/core/data/ValueTest.java 
b/core/src/test/java/org/apache/accumulo/core/data/ValueTest.java
index c7b9db5..cd26743 100644
--- a/core/src/test/java/org/apache/accumulo/core/data/ValueTest.java
+++ b/core/src/test/java/org/apache/accumulo/core/data/ValueTest.java
@@ -55,17 +55,17 @@ public class ValueTest {
 
   @Test(expected=NullPointerException.class)
   public void testNullBytesConstructor() {
-    Value v = new Value((byte[]) null);
+    new Value((byte[]) null);
   }
 
   @Test(expected=NullPointerException.class)
   public void testNullCopyConstructor() {
-    Value v = new Value((Value) null);
+    new Value((Value) null);
   }
 
   @Test(expected=NullPointerException.class)
   public void testNullByteBufferConstructor() {
-    Value v = new Value((ByteBuffer)null);
+    new Value((ByteBuffer)null);
   }
 
   @Test(expected=NullPointerException.class)

Reply via email to