1GD2GJN
diff --git a/org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/JDIDebugModel.java b/org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/JDIDebugModel.java
index ba6c35f..82a864e 100644
--- a/org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/JDIDebugModel.java
+++ b/org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/JDIDebugModel.java
@@ -66,32 +66,6 @@
 	private JDIDebugModel() {

 		super();

 	}

-

-	/**

-	 * Creates and returns a debug target for the given VM, with

-	 * the specified name, and associates the debug target with the

-	 * given process for console I/O. The allow terminate flag specifies whether

-	 * the debug target will support termination (<code>ITerminate</code>).

-	 * If termination is not supported, the debug target will support

-	 * disconnecting (<code>IDisconnect</code>). Launching the actual

-	 * VM is a client responsibility.

-	 *

-	 * @param vm the VM do create a debug target for

-	 * @param name the name to associate with the VM, which will be 

-	 *   returned from <code>IDebugTarget.getName</code>. If <code>null</code>

-	 *   the name will be retrieved from the underlying VM.

-	 * @param process the process to associate with the debug target,

-	 *   which will be returned from <code>IDebugTarget.getProcess</code>

-	 * @param allowTermiante specifies if the target will support termiantion

-	 *   or disconnecting

-	 * @return a debug target

-	 * @see org.eclipse.debug.core.model.ITerminate

-	 * @see org.eclipse.debug.core.model.IDisconnect

-	 * @deprecated - user newDebugTarget(VirtalMachine, String, IProcess, boolean, boolean)

-	 */

-	public static IDebugTarget newDebugTarget(VirtualMachine vm, String name, IProcess process, boolean allowTerminate) {

-		return newDebugTarget(vm, name, process, allowTerminate, !allowTerminate);

-	}

 	

 	/**

 	 * Creates and returns a debug target for the given VM, with