Author: kono
Date: 2011-01-14 10:31:51 -0800 (Fri, 14 Jan 2011)
New Revision: 23460

Modified:
   
core3/work-swing-impl/trunk/impl/src/main/java/org/cytoscape/work/internal/task/SwingTaskManager.java
Log:
Debug messages are removed.

Modified: 
core3/work-swing-impl/trunk/impl/src/main/java/org/cytoscape/work/internal/task/SwingTaskManager.java
===================================================================
--- 
core3/work-swing-impl/trunk/impl/src/main/java/org/cytoscape/work/internal/task/SwingTaskManager.java
       2011-01-14 18:30:48 UTC (rev 23459)
+++ 
core3/work-swing-impl/trunk/impl/src/main/java/org/cytoscape/work/internal/task/SwingTaskManager.java
       2011-01-14 18:31:51 UTC (rev 23460)
@@ -198,12 +198,10 @@
                }
                
                public void run() {
-                       System.out.println("###### Run CALLED");
                        try {
                                // actually run the first task 
                                // don't dispaly the tunables here - they were 
handled above. 
                                first.run(taskMonitor);
-                               System.out.println("###### 1st task is DONE");
 
                                if (taskMonitor.cancelled())
                                        return;
@@ -219,22 +217,16 @@
 
                                        if (taskMonitor.cancelled())
                                                break;
-                               }
-                               
-                               System.out.println("###### Run tasks are DONE");
-                               
+                               }                               
                        } catch (Exception exception) {
                                logger.warn("Caught exception executing task. 
", exception);    
                                taskMonitor.showException(exception);
                        }
-
-                       System.out.println("###### Cleanup monitor");
                        
                        // clean up the task monitor
                        if (taskMonitor.isOpened() && 
!taskMonitor.isShowingException())
                                taskMonitor.close();
                        
-                       System.out.println("###### Cleanup is DONE");
                }
        }
 

-- 
You received this message because you are subscribed to the Google Groups 
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/cytoscape-cvs?hl=en.

Reply via email to