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 2014/05/21 04:00:01 UTC

[42/50] [abbrv] git commit: ACCUMULO-378 Make findbugs stop whining

ACCUMULO-378 Make findbugs stop whining


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

Branch: refs/heads/ACCUMULO-378
Commit: 215e2b51d880e626577cf9442047a6213f6a15e4
Parents: 1b4acdf
Author: Josh Elser <el...@apache.org>
Authored: Tue May 20 10:58:14 2014 -0400
Committer: Josh Elser <el...@apache.org>
Committed: Tue May 20 10:58:14 2014 -0400

----------------------------------------------------------------------
 .../accumulo/test/replication/ReplicationSequentialIT.java       | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/215e2b51/test/src/test/java/org/apache/accumulo/test/replication/ReplicationSequentialIT.java
----------------------------------------------------------------------
diff --git a/test/src/test/java/org/apache/accumulo/test/replication/ReplicationSequentialIT.java b/test/src/test/java/org/apache/accumulo/test/replication/ReplicationSequentialIT.java
index ea7aaa2..296175b 100644
--- a/test/src/test/java/org/apache/accumulo/test/replication/ReplicationSequentialIT.java
+++ b/test/src/test/java/org/apache/accumulo/test/replication/ReplicationSequentialIT.java
@@ -65,12 +65,12 @@ public class ReplicationSequentialIT extends ConfigurableMacIT {
   private ExecutorService executor;
 
   @Before
-  public void setup() {
+  public void createExecutor() {
     executor = Executors.newSingleThreadExecutor();
   }
 
   @After
-  public void teardown() {
+  public void stopExecutor() {
     if (null != executor) {
       executor.shutdownNow();
     }