You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ji...@apache.org on 2016/04/12 23:16:36 UTC

[11/18] incubator-geode git commit: Restore final on postSetUp

Restore final on postSetUp


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

Branch: refs/heads/feature/GEODE-17-2
Commit: cc7a0567d17735686f5a96b7406e2626e1b12b1d
Parents: dc89723
Author: Kirk Lund <kl...@apache.org>
Authored: Tue Apr 5 12:40:35 2016 -0700
Committer: Kirk Lund <kl...@apache.org>
Committed: Tue Apr 5 12:40:35 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/cc7a0567/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 8ce93ad..5d88bc6 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
@@ -50,7 +50,7 @@ public class BasicDUnitTest extends DistributedTestCase {
   }
 
   @Override
-  public void postSetUp() throws Exception {
+  public final void postSetUp() throws Exception {
     bindings = new Properties();
     invokeInEveryVM(() -> bindings = new Properties());
     this.vm0 = Host.getHost(0).getVM(0);