update doc comment links

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

Branch: refs/heads/feature/GEODE-2449
Commit: f990e7907cddad5522eea0b6919702489be7a49d
Parents: 452ac17
Author: Galen O'Sullivan <gosulli...@pivotal.io>
Authored: Mon Feb 13 17:25:06 2017 -0800
Committer: Galen O'Sullivan <gosulli...@pivotal.io>
Committed: Mon Feb 13 17:25:06 2017 -0800

----------------------------------------------------------------------
 .../geode/distributed/ConfigurationProperties.java      | 12 +++++++-----
 .../apache/geode/internal/cache/GemFireCacheImpl.java   |  2 +-
 2 files changed, 8 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geode/blob/f990e790/geode-core/src/main/java/org/apache/geode/distributed/ConfigurationProperties.java
----------------------------------------------------------------------
diff --git 
a/geode-core/src/main/java/org/apache/geode/distributed/ConfigurationProperties.java
 
b/geode-core/src/main/java/org/apache/geode/distributed/ConfigurationProperties.java
index e11ace2..36b2679 100644
--- 
a/geode-core/src/main/java/org/apache/geode/distributed/ConfigurationProperties.java
+++ 
b/geode-core/src/main/java/org/apache/geode/distributed/ConfigurationProperties.java
@@ -1873,9 +1873,9 @@ public interface ConfigurationProperties {
   /**
    * The static String definition of the <i>"redis-port"</i> property <a 
name="redis-port"/a>
    * </p>
-   * <U>Description</U>: Specifies the port used by {@link GeodeRedisServer} 
which enables redis
-   * clients to connect and store data in GemFire distributed system. see 
{@link GeodeRedisServer}
-   * for other configuration options.
+   * <U>Description</U>: Specifies the port used by {@link 
org.apache.geode.redis.GeodeRedisService}
+   * which enables redis clients to connect and store data in GemFire 
distributed system. see
+   * {@link org.apache.geode.redis.GeodeRedisService} for other configuration 
options.
    * </p>
    * <U>Default</U>: "0" disables GemFireMemcachedServer
    * </p>
@@ -1886,7 +1886,8 @@ public interface ConfigurationProperties {
    * The static String definition of the <i>"redis-bind-address"</i> property 
<a
    * name="redis-bind-address"/a>
    * </p>
-   * <U>Description</U>: Specifies the bind address used by {@link 
GeodeRedisServer}
+   * <U>Description</U>: Specifies the bind address used by
+   * {@link org.apache.geode.redis.GeodeRedisService}
    * </p>
    * <U>Default</U>: ""
    */
@@ -1895,7 +1896,8 @@ public interface ConfigurationProperties {
    * The static String definition of the <i>"redis-password"</i> property <a
    * name="redis-password"/a>
    * </p>
-   * <U>Description</U>: Specifies the password to authenticate a client of 
{@link GeodeRedisServer}
+   * <U>Description</U>: Specifies the password to authenticate a client of
+   * {@link org.apache.geode.redis.GeodeRedisService}
    * </p>
    * <U>Default</U>: ""
    */

http://git-wip-us.apache.org/repos/asf/geode/blob/f990e790/geode-core/src/main/java/org/apache/geode/internal/cache/GemFireCacheImpl.java
----------------------------------------------------------------------
diff --git 
a/geode-core/src/main/java/org/apache/geode/internal/cache/GemFireCacheImpl.java
 
b/geode-core/src/main/java/org/apache/geode/internal/cache/GemFireCacheImpl.java
index 6958d55..94532c6 100755
--- 
a/geode-core/src/main/java/org/apache/geode/internal/cache/GemFireCacheImpl.java
+++ 
b/geode-core/src/main/java/org/apache/geode/internal/cache/GemFireCacheImpl.java
@@ -1363,7 +1363,7 @@ public class GemFireCacheImpl
     GeodeRedisService geodeRedisService = getService(GeodeRedisService.class);
     if (geodeRedisService != null) {
       geodeRedisService.start();
-    } else if (system.getConfig().getRedisPort() >= 0){
+    } else if (system.getConfig().getRedisPort() >= 0) {
       throw new GemFireConfigException(
           "Geode Redis Service could not be started because it was not 
registered as a service");
     }

Reply via email to