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

Nicolas Capponi
19.44.2016 5f9ccac52b25265d38c85c0d23be6f8f91dc74d6
opendj-server-legacy/src/main/java/org/opends/server/schema/SchemaHandler.java
@@ -134,7 +134,7 @@
  private volatile Schema schema;
  /** Writer which persists schema to disk. */
  private SchemaWriter schemaWriter;
  private SchemaFilesWriter schemaWriter;
  /**
   * The list of offline modifications made to the schema.
@@ -207,7 +207,7 @@
  public void initialize(final ServerContext serverContext) throws InitializationException, ConfigException
  {
    this.serverContext = serverContext;
    this.schemaWriter = new SchemaWriter(serverContext);
    this.schemaWriter = new SchemaFilesWriter(serverContext);
    exclusiveLock.lock();
    try