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

Jean-Noël Rouvignac
18.05.2015 3a1c06c0b32e3139646c32aac2fd0199a5c9e080
opendj-sdk/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));