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

neil_a_wilson
04.55.2007 4204e17ef5a801f50836310143394d801229ba3b
opends/src/server/org/opends/server/plugins/SevenBitCleanPlugin.java
@@ -82,15 +82,6 @@
  /**
   * The result that should be returned if an imported entry fails the 7-bit
   * clean check.
   */
  private static final LDIFPluginResult LDIF_FAILURE_RESULT =
       new LDIFPluginResult(false, false);
  /**
   * The result that should be returned if a pre-parse operation fails the 7-bit
   * clean check.
   */
@@ -210,7 +201,10 @@
          {
            if (! is7BitClean(v.getValue()))
            {
              return LDIF_FAILURE_RESULT;
              Message rejectMessage =
                   ERR_PLUGIN_7BIT_IMPORT_ATTR_NOT_CLEAN.get(
                        a.getNameWithOptions());
              return new LDIFPluginResult(false, false, rejectMessage);
            }
          }
        }
@@ -219,7 +213,6 @@
    // If we've gotten here, then everything is acceptable.
System.err.println("  The entry is acceptable");
    return LDIFPluginResult.SUCCESS;
  }