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

matthew_swift
06.45.2009 df426d8775737476ca79980ddc5a1b197f53207e
opends/src/server/org/opends/server/protocols/asn1/ASN1OutputStreamWriter.java
@@ -435,7 +435,17 @@
   */
  public ASN1Writer writeStartSet() throws IOException
  {
    return writeStartSequence(UNIVERSAL_SET_TYPE);
    return writeStartSet(UNIVERSAL_SET_TYPE);
  }
  /**
   * {@inheritDoc}
   */
  public ASN1Writer writeStartSet(byte type) throws IOException
  {
    // From an implementation point of view, a set is equivalent to a
    // sequence.
    return writeStartSequence(type);
  }
  /**