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

Jean-Noël Rouvignac
20.36.2016 2a3158aad80fc910b83336485b3e545dea50066c
opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/util/BackgroundTaskThread.java
@@ -12,9 +12,8 @@
 * information: "Portions Copyright [year] [name of copyright owner]".
 *
 * Copyright 2008 Sun Microsystems, Inc.
 * Portions Copyright 2015 ForgeRock AS.
 * Portions Copyright 2015-2016 ForgeRock AS.
 */
package org.opends.guitools.controlpanel.util;
import javax.swing.SwingUtilities;
@@ -41,6 +40,7 @@
 }
 /** Performs the processing associated with the background task. */
 @Override
 public void run()
 {
   try
@@ -48,7 +48,7 @@
     final T returnValue = backgroundTask.processBackgroundTask();
     SwingUtilities.invokeLater(new Runnable()
     {
       /** {@inheritDoc} */
       @Override
       public void run()
       {
         backgroundTask.backgroundTaskCompleted(returnValue, null);
@@ -61,7 +61,7 @@
     {
       SwingUtilities.invokeLater(new Runnable()
       {
         /** {@inheritDoc} */
         @Override
         public void run()
         {
           backgroundTask.backgroundTaskCompleted(null, t);