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

neil_a_wilson
01.18.2007 3e3246e42af6979556dec66ec10ad3d3e009217c
opendj-sdk/opends/src/server/org/opends/server/api/plugin/StartupPluginResult.java
@@ -101,7 +101,6 @@
                             boolean continueStartup, int errorID,
                             String errorMessage)
  {
    this.completedSuccessfully = completedSuccessfully;
    this.continueStartup       = continueStartup;
    this.errorID               = errorID;
@@ -119,7 +118,6 @@
   */
  public boolean completedSuccessfully()
  {
    return completedSuccessfully;
  }
@@ -135,7 +133,6 @@
   */
  public boolean continueStartup()
  {
    return continueStartup;
  }
@@ -150,7 +147,6 @@
   */
  public int getErrorID()
  {
    return errorID;
  }
@@ -166,7 +162,6 @@
   */
  public String getErrorMessage()
  {
    return errorMessage;
  }
@@ -179,7 +174,6 @@
   */
  public String toString()
  {
    StringBuilder buffer = new StringBuilder();
    toString(buffer);
    return buffer.toString();
@@ -196,7 +190,6 @@
   */
  public void toString(StringBuilder buffer)
  {
    buffer.append("StartupPluginResult(completedSuccessfully=");
    buffer.append(completedSuccessfully);
    buffer.append(", continueStartup=");