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

lutoff
16.40.2007 a5a372a17dfbea0e0551a992e11c4fec4b7bb9d0
opends/src/server/org/opends/server/core/DirectoryServer.java
@@ -8328,18 +8328,7 @@
  public static void printVersion(OutputStream outputStream)
  throws IOException
  {
    StringBuilder buffer = new StringBuilder();
    buffer.append(getVersionString());
    buffer.append(EOL);
    buffer.append("Build " + BUILD_ID);
    buffer.append(EOL);
    if ((FIX_IDS != null) && (FIX_IDS.length() > 0))
    {
      buffer.append("Fix IDs:  " + FIX_IDS);
      buffer.append(EOL);
    }
    outputStream.write(getBytes(buffer.toString()));
    outputStream.write(getBytes(PRINTABLE_VERSION_STRING));
    return;
  }