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

sin
30.06.2009 b0bd40fa373c990e1f1d8619b45ffb1425e5b85d
opends/src/server/org/opends/server/backends/jeb/BackendImpl.java
@@ -1142,10 +1142,16 @@
          hasSubIndex = true;
          break;
        }
        Set<ExtensibleMatchingRule> matchingRules =
        Set<String> matchingRules =
                              indexCfg.getIndexExtensibleMatchingRule();
        for(ExtensibleMatchingRule rule: matchingRules)
        for(String ruleName: matchingRules)
        {
          ExtensibleMatchingRule rule =
                  DirectoryServer.getExtensibleMatchingRule(ruleName);
          if(rule == null)
          {
            continue;
          }
          for(ExtensibleIndexer indexer: rule.getIndexers(null))
          {
            String indexID = indexer.getExtensibleIndexID();