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

boli
01.27.2007 455897cc245b67d929f409a93cfa7106e835cc1f
opends/src/server/org/opends/server/backends/task/TaskState.java
@@ -22,16 +22,11 @@
 * CDDL HEADER END
 *
 *
 *      Portions Copyright 2006 Sun Microsystems, Inc.
 *      Portions Copyright 2006-2007 Sun Microsystems, Inc.
 */
package org.opends.server.backends.task;
import static org.opends.server.loggers.Debug.*;
/**
 * This enumeration defines the various states that a task can have during its
 * lifetime.
@@ -126,11 +121,6 @@
  /**
   * The fully-qualified name of this class for debugging purposes.
   */
  private static final String CLASS_NAME =
       "org.opends.server.backends.task.TaskState";
@@ -145,7 +135,7 @@
   */
  public static boolean isPending(TaskState taskState)
  {
    assert debugEnter(CLASS_NAME, "isPending", String.valueOf(taskState));
    switch (taskState)
    {
@@ -170,7 +160,7 @@
   */
  public static boolean isRunning(TaskState taskState)
  {
    assert debugEnter(CLASS_NAME, "isRunning", String.valueOf(taskState));
    switch (taskState)
    {
@@ -196,7 +186,7 @@
   */
  public static boolean isDone(TaskState taskState)
  {
    assert debugEnter(CLASS_NAME, "isDone", String.valueOf(taskState));
    switch (taskState)
    {
@@ -224,7 +214,7 @@
   */
  public static boolean isSuccessful(TaskState taskState)
  {
    assert debugEnter(CLASS_NAME, "isDone", String.valueOf(taskState));
    switch (taskState)
    {