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

pgamba
24.28.2007 f30a1f7a80ad78ec016c353de53b005f796020f7
Fix compile error with Java 1.5 using an 1.6 IOException constructor
1 files modified
2 ■■■ changed files
opendj-sdk/opends/src/server/org/opends/server/replication/plugin/ReplicationDomain.java 2 ●●● patch | view | raw | blame | history
opendj-sdk/opends/src/server/org/opends/server/replication/plugin/ReplicationDomain.java
@@ -2863,7 +2863,7 @@
    }
    catch (DirectoryException de)
    {
      throw new IOException(de);
      throw new IOException(de.getMessage());
    }
  }