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

Jean-Noël Rouvignac
18.05.2015 44d66fb637bbe220021e7a9d098dd65e1f3e2460
Fix OpenDJ build after a source incompatible change in CHF
1 files modified
3 ■■■■ changed files
opendj-server-legacy/src/main/java/org/opends/server/protocols/http/LdapHttpApplication.java 3 ●●●● patch | view | raw | blame | history
opendj-server-legacy/src/main/java/org/opends/server/protocols/http/LdapHttpApplication.java
@@ -30,7 +30,6 @@
import java.io.File;
import java.io.FileReader;
import java.util.Map;
import org.forgerock.http.Context;
import org.forgerock.http.Handler;
@@ -117,7 +116,7 @@
    try
    {
      final File configFile = getFileForPath(connectionHandler.getCurrentConfig().getConfigFile());
      final Map<String, Object> jsonElems = Json.readJsonLenient(new FileReader(configFile));
      final Object jsonElems = Json.readJsonLenient(new FileReader(configFile));
      final JsonValue configuration = new JsonValue(jsonElems).recordKeyAccesses();
      handler = new LdapHttpHandler(configuration);
      filter = new CollectClientConnectionsFilter(connectionHandler, getAuthenticationConfig(configuration));