You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by nn...@apache.org on 2018/04/24 17:24:55 UTC

[geode] branch develop updated: GEODE-3438: Removed unused constructor and method (#1832)

This is an automated email from the ASF dual-hosted git repository.

nnag pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/develop by this push:
     new 147c9d5  GEODE-3438: Removed unused constructor and method (#1832)
147c9d5 is described below

commit 147c9d54dcc2d03704e6cb4ddfc2fa36fa70278f
Author: Nabarun Nag <na...@users.noreply.github.com>
AuthorDate: Tue Apr 24 10:24:52 2018 -0700

    GEODE-3438: Removed unused constructor and method (#1832)
---
 .../management/internal/cli/domain/DurableCqNamesResult.java  | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/geode-core/src/main/java/org/apache/geode/management/internal/cli/domain/DurableCqNamesResult.java b/geode-core/src/main/java/org/apache/geode/management/internal/cli/domain/DurableCqNamesResult.java
index 2c6799e..7cfeed8 100644
--- a/geode-core/src/main/java/org/apache/geode/management/internal/cli/domain/DurableCqNamesResult.java
+++ b/geode-core/src/main/java/org/apache/geode/management/internal/cli/domain/DurableCqNamesResult.java
@@ -30,17 +30,6 @@ public class DurableCqNamesResult extends MemberResult implements Serializable {
     super(memberNameOrId);
   }
 
-  public DurableCqNamesResult(final String memberNameOrId, List<String> cqNames) {
-    super(memberNameOrId);
-    cqNames.addAll(cqNames);
-  }
-
-  public void addCqName(String cqName) {
-    cqNames.add(cqName);
-    super.isSuccessful = true;
-    super.opPossible = true;
-  }
-
   public List<String> getCqNamesList() {
     return cqNames;
   }

-- 
To stop receiving notification emails like this one, please contact
nnag@apache.org.