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

Jean-Noel Rouvignac
14.19.2014 04c1aca24a2cc5dc8d9a4f22ba05ac74de607f06
opendj3-server-dev/src/server/org/opends/server/api/VirtualAttributeProvider.java
@@ -556,7 +556,7 @@
    ByteString normalizedValue;
    try
    {
      normalizedValue = matchingRule.normalizeValue(value.getValue());
      normalizedValue = matchingRule.normalizeAttributeValue(value.getValue());
    }
    catch (Exception e)
    {
@@ -572,7 +572,7 @@
    {
      try
      {
        ByteString nv = matchingRule.normalizeValue(v.getValue());
        ByteString nv = matchingRule.normalizeAttributeValue(v.getValue());
        if (matchingRule.approximatelyMatch(nv, normalizedValue))
        {
          return ConditionResult.TRUE;