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

jcambon
04.36.2008 e68e9574cfb7e860d82d7506a7e50097124298fc
opends/src/server/org/opends/server/tools/dsconfig/SetPropSubCommandHandler.java
@@ -22,7 +22,7 @@
 * CDDL HEADER END
 *
 *
 *      Portions Copyright 2007 Sun Microsystems, Inc.
 *      Portions Copyright 2007-2008 Sun Microsystems, Inc.
 */
package org.opends.server.tools.dsconfig;
@@ -277,13 +277,15 @@
      }
      try {
        // Commit the changes.
        mo.commit();
        // Commit the changes if necessary
        if (mo.isModified()) {
          mo.commit();
        // Output success message.
        app.println();
        Message msg = INFO_DSCFG_CONFIRM_MODIFY_SUCCESS.get(ufn);
        app.printVerboseMessage(msg);
          // Output success message.
          app.println();
          Message msg = INFO_DSCFG_CONFIRM_MODIFY_SUCCESS.get(ufn);
          app.printVerboseMessage(msg);
        }
        return MenuResult.success();
      } catch (MissingMandatoryPropertiesException e) {