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

neil_a_wilson
08.20.2007 37820c6eb0a7061f62fbc7b540eda842cf455bf4
opends/src/server/org/opends/server/backends/SchemaBackend.java
@@ -1689,7 +1689,7 @@
        try
        {
          at = AttributeTypeSyntax.decodeAttributeType(v.getValue(), schema,
                                                       false);
                                                       true);
        }
        catch (DirectoryException de)
        {
@@ -2039,7 +2039,7 @@
        ObjectClass oc;
        try
        {
          oc = ObjectClassSyntax.decodeObjectClass(v.getValue(), schema, false);
          oc = ObjectClassSyntax.decodeObjectClass(v.getValue(), schema, true);
        }
        catch (DirectoryException de)
        {
@@ -2369,7 +2369,7 @@
        NameForm nf;
        try
        {
          nf = NameFormSyntax.decodeNameForm(v.getValue(), schema, false);
          nf = NameFormSyntax.decodeNameForm(v.getValue(), schema, true);
        }
        catch (DirectoryException de)
        {
@@ -2942,7 +2942,7 @@
        try
        {
          dsr = DITStructureRuleSyntax.decodeDITStructureRule(
                     v.getValue(), schema, false);
                     v.getValue(), schema, true);
        }
        catch (DirectoryException de)
        {