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

neil_a_wilson
01.18.2007 a49dee3f75d6e2548e9114d9495655dd56f06973
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();