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

matthew_swift
24.09.2007 d5978b34002ffd58445ad11147f76793dd351b4f
Remove unnecessary cast which was causing a compilation warning with JDK1.6.
1 files modified
2 ■■■ changed files
opendj-sdk/opends/src/server/org/opends/server/protocols/ldap/LDAPConnectionHandler.java 2 ●●● patch | view | raw | blame | history
opendj-sdk/opends/src/server/org/opends/server/protocols/ldap/LDAPConnectionHandler.java
@@ -484,7 +484,7 @@
   *         allowed by this connection handler.
   */
  public int getMaxRequestSize() {
    return (int) ((long) currentConfig.getMaxRequestSize());
    return (int) currentConfig.getMaxRequestSize();
  }