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

Gaetan Boismal
23.46.2016 08a8540072a370b4e7e9604eb97818dcfd4d74c6
opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/datamodel/BinaryValue.java
@@ -21,7 +21,7 @@
import java.text.ParseException;
import java.util.Objects;
import org.opends.server.util.Base64;
import org.forgerock.opendj.ldap.Base64;
/**
 * Class used to represent Binary Values.  This is required in particular
@@ -123,7 +123,7 @@
  {
    if (bytes == null && base64 != null)
    {
      bytes = Base64.decode(base64);
      bytes = Base64.decode(base64).toByteArray();
    }
    return bytes;
  }