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

matthew_swift
24.09.2007 7c2c4e0fba87acea27bd8b93c0896dd253370a87
Remove unnecessary cast which was causing a compilation warning with JDK1.6.
1 files modified
2 ■■■ changed files
opends/src/server/org/opends/server/protocols/ldap/LDAPConnectionHandler.java 2 ●●● patch | view | raw | blame | history
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();
  }