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

neil_a_wilson
01.18.2007 3e3246e42af6979556dec66ec10ad3d3e009217c
opendj-sdk/opends/src/server/org/opends/server/protocols/asn1/ASN1Writer.java
@@ -66,7 +66,6 @@
  public ASN1Writer(Socket socket)
         throws IOException
  {
    this.socket  = socket;
    outputStream = socket.getOutputStream();
  }
@@ -81,7 +80,6 @@
   */
  public ASN1Writer(OutputStream outputStream)
  {
    this.outputStream = outputStream;
    socket            = null;
  }
@@ -102,7 +100,6 @@
  public int writeElement(ASN1Element element)
         throws IOException
  {
    byte[] elementBytes = element.encode();
    outputStream.write(elementBytes);
    outputStream.flush();