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

jcduff
23.04.2008 b4f8838b15342670c31753a484abf0129e3c9653
opendj-sdk/opends/src/server/org/opends/server/plugins/SevenBitCleanPlugin.java
@@ -185,7 +185,7 @@
      {
        for (Attribute a : attrList)
        {
          for (AttributeValue v : a.getValues())
          for (AttributeValue v : a)
          {
            if (! is7BitClean(v.getValue()))
            {
@@ -252,7 +252,7 @@
          continue;
        }
        for (AttributeValue v : a.getValues())
        for (AttributeValue v : a)
        {
          if (! is7BitClean(v.getValue()))
          {
@@ -330,7 +330,7 @@
          continue;
        }
        for (AttributeValue v : a.getValues())
        for (AttributeValue v : a)
        {
          if (! is7BitClean(v.getValue()))
          {
@@ -458,7 +458,6 @@
  {
    for (byte b : value.value())
    {
      int i = (b & 0xFF);
      if ((b & MASK) != b)
      {
        return false;