JAL-2844 removed resetting line drawing to keep line on screen
[jalview.git] / forester / java / src / org / forester / archaeopteryx / tools / RunnableProcess.java
index 9fe35fa..6b9bb4b 100644 (file)
@@ -1,7 +1,7 @@
 
 package org.forester.archaeopteryx.tools;
 
-import org.forester.archaeopteryx.Constants;
+import org.forester.archaeopteryx.AptxConstants;
 import org.forester.archaeopteryx.MainFrame;
 import org.forester.util.ForesterUtil;
 
@@ -25,8 +25,8 @@ public abstract class RunnableProcess implements Runnable {
     public void end( final MainFrame mf ) {
         final boolean removed = mf.getProcessPool().removeProcess( getProcessId() );
         if ( !removed ) {
-            ForesterUtil.printWarningMessage( Constants.PRG_NAME, "could not remove process " + getProcessId()
-                    + " from process pool" );
+            ForesterUtil.printWarningMessage( AptxConstants.PRG_NAME, "could not remove process " + getProcessId()
+                                              + " from process pool" );
         }
         mf.updateProcessMenu();
     }