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

Nicolas Capponi
29.24.2014 dd8c19ab2e4fc3347c7cf74b4351a48e3774166a
opendj3-server-dev/src/guitools/org/opends/guitools/controlpanel/ui/CustomAttributePanel.java
@@ -87,7 +87,6 @@
import org.forgerock.i18n.LocalizableMessageBuilder;
import org.opends.server.api.MatchingRule;
import org.opends.server.api.AttributeSyntax;
import org.opends.server.api.SubstringMatchingRule;
import org.opends.server.types.AttributeType;
import org.forgerock.opendj.ldap.schema.AttributeUsage;
import org.opends.server.types.ObjectClass;
@@ -1202,7 +1201,7 @@
    }
  }
  private SubstringMatchingRule getSubstringMatchingRule()
  private MatchingRule getSubstringMatchingRule()
  {
    if (substring.getSelectedIndex() == 0)
    {
@@ -1210,7 +1209,7 @@
    }
    else
    {
      return (SubstringMatchingRule)substring.getSelectedItem();
      return (MatchingRule)substring.getSelectedItem();
    }
  }