diff --git a/com.ibm.wala.core/src/com/ibm/wala/dynamic/BasicLauncher.java b/com.ibm.wala.core/src/com/ibm/wala/dynamic/BasicLauncher.java index 4b4bcb5bb..8e166be81 100644 --- a/com.ibm.wala.core/src/com/ibm/wala/dynamic/BasicLauncher.java +++ b/com.ibm.wala.core/src/com/ibm/wala/dynamic/BasicLauncher.java @@ -16,45 +16,9 @@ import com.ibm.wala.util.warnings.WalaException; * A generic process launcher */ public class BasicLauncher extends Launcher { - /** - * The default value of the '{@link #getCmd() Cmd}' attribute. - * - * - * @see #getCmd() - * @generated - * @ordered - */ - protected static final String CMD_EDEFAULT = null; - /** - * The cached value of the '{@link #getCmd() Cmd}' attribute. - * - * - * @see #getCmd() - * @generated - * @ordered - */ - protected String cmd = CMD_EDEFAULT; + protected String cmd; - /** - * The default value of the '{@link #isCaptureOutput() Capture Output}' attribute. - * - * - * @see #isCaptureOutput() - * @generated - * @ordered - */ - protected static final boolean CAPTURE_OUTPUT_EDEFAULT = false; - - /** - * The default value of the '{@link #getOutput() Output}' attribute. - * - * - * @see #getOutput() - * @generated - * @ordered - */ - protected static final byte[] OUTPUT_EDEFAULT = null; /** * @@ -118,4 +82,4 @@ public class BasicLauncher extends Launcher { setOutput(d.getCapture().toByteArray()); } } -} //BasicLauncher +}