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

Nicolas Capponi
08.33.2014 8643a9160860e31611f034467f702eb3a712eb34
opendj3-server-dev/src/server/org/opends/server/admin/DNPropertyDefinition.java
@@ -29,7 +29,7 @@
import static org.opends.server.util.Validator.ensureNotNull;
import static org.forgerock.util.Reject.ifNull;
import java.util.EnumSet;
@@ -172,7 +172,7 @@
  @Override
  public void validateValue(DN value)
      throws IllegalPropertyValueException {
    ensureNotNull(value);
    ifNull(value);
    if (baseDN != null) {
      DN parent = value.parent();
@@ -195,7 +195,7 @@
  @Override
  public DN decodeValue(String value)
      throws IllegalPropertyValueStringException {
    ensureNotNull(value);
    ifNull(value);
    try {
      DN dn = DN.valueOf(value);