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

Jean-Noël Rouvignac
29.48.2016 e4c0edea06c8fee28369f03f393b7d54b2b6235c
opendj-server-legacy/src/main/java/org/opends/server/util/BuildVersion.java
@@ -276,6 +276,17 @@
    {
      return Utils.joinAsString(".", major, minor, point, rev);
    }
    return toStringNoRevision();
  }
  /**
   * Returns a string representation of the BuildVersion including the major, minor and point
   * versions, but excluding the revision number.
   *
   * @return a string representation excluding the revision number
   */
  public String toStringNoRevision()
  {
    return Utils.joinAsString(".", major, minor, point);
  }