mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

jvergara
25.36.2009 d9f79e85c7d280a1d7dc5c4917f6e0d6f601478d
Use the proper variables names in the method.
1 files modified
7 ■■■■■ changed files
opends/src/ads/org/opends/admin/ads/ServerDescriptor.java 7 ●●●●● patch | view | raw | blame | history
opends/src/ads/org/opends/admin/ads/ServerDescriptor.java
@@ -246,13 +246,12 @@
   */
  public int getReplicationServerId()
  {
    int port = -1;
    int id = -1;
    if (isReplicationServer())
    {
      port = (Integer)serverProperties.get(
          ServerProperty.REPLICATION_SERVER_ID);
      id = (Integer)serverProperties.get(ServerProperty.REPLICATION_SERVER_ID);
    }
    return port;
    return id;
  }
  /**