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

Jean-Noël Rouvignac
02.52.2016 3807fe9aa9875009bd37c4cf2e863d21040bcc2b
fix IDE warning
1 files modified
4 ■■■ changed files
opendj-server-legacy/src/main/java/org/opends/server/core/BoundedWorkQueueStrategy.java 4 ●●● patch | view | raw | blame | history
opendj-server-legacy/src/main/java/org/opends/server/core/BoundedWorkQueueStrategy.java
@@ -229,9 +229,7 @@
    }
    else
    {
      throw new RuntimeException(
          "Not implemented for " + operation == null ? null : operation
              .getClass().getName());
      throw new RuntimeException("Not implemented for " + (operation == null ? null : operation.getClass().getName()));
    }
  }