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

Jean-Noel Rouvignac
26.57.2013 693421b38b25cf570415fbb205a78948c32afeb9
opends/src/server/org/opends/server/core/SynchronousStrategy.java
@@ -23,12 +23,12 @@
 *
 *
 *      Copyright 2006-2008 Sun Microsystems, Inc.
 *      Portions Copyright 2011 ForgeRock AS
 *      Portions Copyright 2011-2013 ForgeRock AS
 */
package org.opends.server.core;
import org.opends.server.types.AbstractOperation;
import org.opends.server.types.DirectoryException;
import org.opends.server.types.Operation;
/**
 *
@@ -44,8 +44,8 @@
   * @throws org.opends.server.types.DirectoryException
   *          If a problem occurs in the Directory Server.
   */
  public void enqueueRequest(AbstractOperation operation)
    throws DirectoryException {
  @Override
  public void enqueueRequest(Operation operation) throws DirectoryException {
    operation.run();
    operation.operationCompleted();
  }