Index: openide/execution/src/org/openide/execution/ExecInfo.java =================================================================== RCS file: /cvs/openide/execution/src/org/openide/execution/ExecInfo.java,v retrieving revision 1.4 diff -u -r1.4 ExecInfo.java --- openide/execution/src/org/openide/execution/ExecInfo.java 3 Dec 2002 14:11:19 -0000 1.4 +++ openide/execution/src/org/openide/execution/ExecInfo.java 3 Apr 2003 16:09:58 -0000 @@ -13,8 +13,6 @@ package org.openide.execution; -import org.openide.ErrorManager; - /** Provides basic information required to start executing a class. * * @author Ales Novak @@ -22,8 +20,6 @@ */ public class ExecInfo { - private static boolean warned = false; - /** param for execution */ private String[] argv; /** class to exec */ @@ -36,12 +32,6 @@ public ExecInfo (String className, String[] argv) { this.argv = argv; this.className = className; - if (!warned) { - warned = true; - if (ErrorManager.getDefault().isNotifiable(ErrorManager.INFORMATIONAL)) { - ErrorManager.getDefault().notify(ErrorManager.INFORMATIONAL, new Throwable("ExecInfo is deprecated - please use Executor.execute(DataObject) instead")); // NOI18N - } - } } /** Create a new descriptor with no arguments.