You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ds...@apache.org on 2015/09/01 01:14:05 UTC

[09/27] incubator-geode git commit: Removed unused ConnectionProxy code in unit test

Removed unused ConnectionProxy code in unit test


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

Branch: refs/heads/feature/GEODE-243
Commit: b6c03048a1001b4e75bc24b551a40ed6071388f2
Parents: b4d5a1b
Author: Darrel Schneider <ds...@pivotal.io>
Authored: Fri Aug 28 14:28:53 2015 -0700
Committer: Darrel Schneider <ds...@pivotal.io>
Committed: Fri Aug 28 14:28:53 2015 -0700

----------------------------------------------------------------------
 .../internal/cache/tier/sockets/RedundancyLevelJUnitTest.java  | 6 ------
 1 file changed, 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/b6c03048/gemfire-core/src/test/java/com/gemstone/gemfire/internal/cache/tier/sockets/RedundancyLevelJUnitTest.java
----------------------------------------------------------------------
diff --git a/gemfire-core/src/test/java/com/gemstone/gemfire/internal/cache/tier/sockets/RedundancyLevelJUnitTest.java b/gemfire-core/src/test/java/com/gemstone/gemfire/internal/cache/tier/sockets/RedundancyLevelJUnitTest.java
index 5efc349..4cb31e7 100644
--- a/gemfire-core/src/test/java/com/gemstone/gemfire/internal/cache/tier/sockets/RedundancyLevelJUnitTest.java
+++ b/gemfire-core/src/test/java/com/gemstone/gemfire/internal/cache/tier/sockets/RedundancyLevelJUnitTest.java
@@ -46,9 +46,6 @@ public class RedundancyLevelJUnitTest
   /** The distributed system */
   Cache cache;
 
-  /** The proxy instance */
-  ConnectionProxy proxy = null;
-
   /**
    * Close the cache and proxy instances for a test and disconnect from the
    * distributed system.
@@ -71,9 +68,6 @@ public class RedundancyLevelJUnitTest
       
       system.disconnect();
     }
-    if (proxy != null) {
-      proxy.close();
-    }
   }
 
   /**