You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by zh...@apache.org on 2019/06/05 23:24:32 UTC

[geode] branch develop updated: Removing references to jar files (#3674)

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

zhouxj 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 10b75a9  Removing references to jar files (#3674)
10b75a9 is described below

commit 10b75a92dee84a6d2a8853c2bbe93cc4e855530c
Author: Donal Evans <do...@pivotal.io>
AuthorDate: Wed Jun 5 16:24:20 2019 -0700

    Removing references to jar files (#3674)
    
        Co-authored-by: Benjamin Ross <br...@pivotal.io>
        Co-authored-by: Donal Evans <do...@pivotal.io>
---
 .../geode/connectors/jdbc/internal/cli/DeregisterDriverCommand.java     | 2 +-
 .../geode/connectors/jdbc/internal/cli/RegisterDriverCommand.java       | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/geode-connectors/src/main/java/org/apache/geode/connectors/jdbc/internal/cli/DeregisterDriverCommand.java b/geode-connectors/src/main/java/org/apache/geode/connectors/jdbc/internal/cli/DeregisterDriverCommand.java
index fcf6559..95b68dc 100644
--- a/geode-connectors/src/main/java/org/apache/geode/connectors/jdbc/internal/cli/DeregisterDriverCommand.java
+++ b/geode-connectors/src/main/java/org/apache/geode/connectors/jdbc/internal/cli/DeregisterDriverCommand.java
@@ -40,7 +40,7 @@ public class DeregisterDriverCommand extends SingleGfshCommand {
 
   static final String DEREGISTER_DRIVER = "deregister driver";
   static final String DEREGISTER_DRIVER__HELP = EXPERIMENTAL
-      + "Deregister a driver with the cluster's Driver Manager using either the name of a currently deployed jar or the name of a driver class contained within a currenly deployed jar.";
+      + "Deregister a driver with the cluster's Driver Manager using the name of a driver class contained within a currenly deployed jar.";
   static final String DRIVER_CLASS_NAME = "driver-class";
   static final String DRIVER_CLASS_NAME_HELP =
       "The name of the driver class contained in a currently deployed jar to be deregistered with the cluster's Driver Manager.";
diff --git a/geode-connectors/src/main/java/org/apache/geode/connectors/jdbc/internal/cli/RegisterDriverCommand.java b/geode-connectors/src/main/java/org/apache/geode/connectors/jdbc/internal/cli/RegisterDriverCommand.java
index f9c8702..8a8c8a9 100644
--- a/geode-connectors/src/main/java/org/apache/geode/connectors/jdbc/internal/cli/RegisterDriverCommand.java
+++ b/geode-connectors/src/main/java/org/apache/geode/connectors/jdbc/internal/cli/RegisterDriverCommand.java
@@ -37,7 +37,7 @@ public class RegisterDriverCommand extends SingleGfshCommand {
 
   static final String REGISTER_DRIVER = "register driver";
   static final String REGISTER_DRIVER__HELP = EXPERIMENTAL
-      + "Register a driver with the cluster's Driver Manager using either the name of a currently deployed jar or the name of a driver class contained within a currenly deployed jar.";
+      + "Register a driver with the cluster's Driver Manager using the name of a driver class contained within a currenly deployed jar.";
   static final String DRIVER_CLASS_NAME = "driver-class";
   static final String DRIVER_CLASS_NAME_HELP =
       "The name of the driver class contained in a currently deployed jar to be registered with the cluster's Driver Manager.";