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

Valery Kharseko
yesterday 9b22e6c88920b4d06ff0a8a67153452f8fd1bd1b
opendj-server-legacy/src/snmp/src/org/opends/server/snmp/DsApplIfOpsEntryImpl.java
@@ -77,8 +77,8 @@
    super(mib);
    this.server = server;
    this.connectionHandlerName = connectionHandlerObjectName;
    this.ApplIndex = new Integer(applIndex);
    this.DsApplIfProtocolIndex = new Integer(connectionHandlerIndex);
    this.ApplIndex = Integer.valueOf(applIndex);
    this.DsApplIfProtocolIndex = Integer.valueOf(connectionHandlerIndex);
    this.monitor = SNMPMonitor.getMonitor(server);
  }
@@ -98,7 +98,7 @@
          if (index==-1) {
              return this.DsApplIfProtocol;
          }
          return  new String("1.3.6.1..27.3.") + portNumber.substring(index+1);
          return  "1.3.6.1..27.3." + portNumber.substring(index+1);
      }
  }