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

ludovicp
29.09.2008 074f9070e645d3e5935264e6f308a69b925c7f72
Fix typo (inverted test) that could lead to NPE
1 files modified
2 ■■■ changed files
opends/src/server/org/opends/server/api/Backend.java 2 ●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/api/Backend.java
@@ -381,7 +381,7 @@
        MatchingRule matchingRule;
        String matchingRuleID = filter.getMatchingRuleID();
        if (matchingRuleID == null)
        if (matchingRuleID != null)
        {
          matchingRule = DirectoryServer.getMatchingRule(
                              matchingRuleID.toLowerCase());