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

matthew_swift
23.26.2007 feb5d90ec016c99712f19c5485cf7633cd38f111
opends/src/server/org/opends/server/core/SchemaConfigManager.java
@@ -333,8 +333,7 @@
      MatchingRule matchingRule;
      try
      {
        // FIXME -- Should we use a custom class loader for this?
        Class matchingRuleClass = Class.forName(className);
        Class matchingRuleClass = DirectoryServer.loadClass(className);
        matchingRule = (MatchingRule) matchingRuleClass.newInstance();
      }
      catch (Exception e)
@@ -577,8 +576,7 @@
      AttributeSyntax syntax;
      try
      {
        // FIXME -- Should we use a custom class loader for this?
        Class syntaxClass = Class.forName(className);
        Class syntaxClass = DirectoryServer.loadClass(className);
        syntax = (AttributeSyntax) syntaxClass.newInstance();
      }
      catch (Exception e)