You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by kl...@apache.org on 2016/04/05 21:48:03 UTC

incubator-geode git commit: Restore final on postTearDown

Repository: incubator-geode
Updated Branches:
  refs/heads/feature/GEODE-1162 cc7a0567d -> c41cd4550


Restore final on postTearDown


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

Branch: refs/heads/feature/GEODE-1162
Commit: c41cd4550f549caead9ba76d76495ef790addd77
Parents: cc7a056
Author: Kirk Lund <kl...@apache.org>
Authored: Tue Apr 5 12:41:32 2016 -0700
Committer: Kirk Lund <kl...@apache.org>
Committed: Tue Apr 5 12:41:32 2016 -0700

----------------------------------------------------------------------
 .../java/com/gemstone/gemfire/test/dunit/tests/BasicDUnitTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/c41cd455/geode-core/src/test/java/com/gemstone/gemfire/test/dunit/tests/BasicDUnitTest.java
----------------------------------------------------------------------
diff --git a/geode-core/src/test/java/com/gemstone/gemfire/test/dunit/tests/BasicDUnitTest.java b/geode-core/src/test/java/com/gemstone/gemfire/test/dunit/tests/BasicDUnitTest.java
index 5d88bc6..17afcc6 100644
--- a/geode-core/src/test/java/com/gemstone/gemfire/test/dunit/tests/BasicDUnitTest.java
+++ b/geode-core/src/test/java/com/gemstone/gemfire/test/dunit/tests/BasicDUnitTest.java
@@ -58,7 +58,7 @@ public class BasicDUnitTest extends DistributedTestCase {
   }
 
   @Override
-  public void postTearDown() throws Exception {
+  public final void postTearDown() throws Exception {
     bindings = null;
     invokeInEveryVM(() -> bindings = null);
   }