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

neil_a_wilson
13.48.2007 313c7ce226afaa79e811d6fa0f5ad8b8a59f0fd5
opends/src/server/org/opends/server/core/SchemaConfigManager.java
@@ -117,14 +117,9 @@
   */
  public static String getSchemaDirectoryPath()
  {
    String schemaDirPath = System.getProperty(PROPERTY_SCHEMA_DIRECTORY);
    if ((schemaDirPath == null) || (schemaDirPath.length() == 0))
    {
      schemaDirPath = DirectoryServer.getServerRoot() + File.separator +
                      PATH_SCHEMA_DIR;
    }
    return schemaDirPath;
    File schemaDir =
              DirectoryServer.getEnvironmentConfig().getSchemaDirectory();
    return schemaDir.getAbsolutePath();
  }