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

Jean-Noel Rouvignac
13.48.2014 3f8b5e8ec5ddba3499bc47eec0895dc5322ccf0f
opendj3-server-dev/src/server/org/opends/server/schema/CollationMatchingRuleFactory.java
@@ -440,7 +440,7 @@
    MatchingRule matchingRule = getMatchingRule(oid);
    if (matchingRule != null)
    {
      for (String name : matchingRule.getAllNames())
      for (String name : matchingRule.getNames())
      {
        names.add(name);
      }
@@ -476,7 +476,7 @@
    MatchingRule matchingRule = getMatchingRule(oid);
    if (matchingRule != null)
    {
      for (String name : matchingRule.getAllNames())
      for (String name : matchingRule.getNames())
      {
        names.add(name);
      }
@@ -516,7 +516,7 @@
    Collection<String> defaultNames = new HashSet<String>();
    if (matchingRule != null)
    {
      for (String name : matchingRule.getAllNames())
      for (String name : matchingRule.getNames())
      {
        defaultNames.add(name);
      }
@@ -534,7 +534,7 @@
    MatchingRule equalityMatchingRule = getMatchingRule(OID);
    if (equalityMatchingRule != null)
    {
      for (String name : equalityMatchingRule.getAllNames())
      for (String name : equalityMatchingRule.getNames())
      {
        names.add(name);
      }
@@ -570,7 +570,7 @@
    MatchingRule matchingRule = getMatchingRule(oid);
    if (matchingRule != null)
    {
      for (String name : matchingRule.getAllNames())
      for (String name : matchingRule.getNames())
      {
        names.add(name);
      }
@@ -606,7 +606,7 @@
    MatchingRule matchingRule = getMatchingRule(oid);
    if (matchingRule != null)
    {
      for (String name : matchingRule.getAllNames())
      for (String name : matchingRule.getNames())
      {
        names.add(name);
      }
@@ -641,7 +641,7 @@
    MatchingRule matchingRule = getMatchingRule(oid);
    if (matchingRule != null)
    {
      for (String name : matchingRule.getAllNames())
      for (String name : matchingRule.getNames())
      {
        names.add(name);
      }
@@ -763,7 +763,7 @@
     * {@inheritDoc}
     */
    @Override
    public Collection<String> getAllNames()
    public Collection<String> getNames()
    {
      return Collections.unmodifiableCollection(names);
    }