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

Nicolas Capponi
08.33.2014 8643a9160860e31611f034467f702eb3a712eb34
opendj3-server-dev/src/server/org/opends/server/util/MultiOutputStream.java
@@ -22,6 +22,7 @@
 *
 *
 *      Copyright 2006-2008 Sun Microsystems, Inc.
 *      Portions Copyright 2014 ForgeRock AS
 */
package org.opends.server.util;
@@ -30,6 +31,8 @@
import java.io.OutputStream;
import static org.opends.server.loggers.debug.DebugLogger.*;
import org.forgerock.util.Reject;
import org.opends.server.loggers.debug.DebugTracer;
import org.opends.server.types.DebugLogLevel;
@@ -69,7 +72,7 @@
   */
  public MultiOutputStream(OutputStream... targetStreams)
  {
    Validator.ensureNotNull(targetStreams);
    Reject.ifNull(targetStreams);
    this.targetStreams = targetStreams;
  }