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

jvergara
25.36.2009 3aed51cd54f10a019420bddc5f34cf568d64bd25
Use the proper variables names in the method.
1 files modified
7 ■■■■■ changed files
opendj-sdk/opends/src/ads/org/opends/admin/ads/ServerDescriptor.java 7 ●●●●● patch | view | raw | blame | history
opendj-sdk/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;
  }
  /**