X-Git-Url: http://secure.phpeclipse.com

diff --git a/net.sourceforge.phpeclipse.launching/src/net/sourceforge/phpdt/internal/launching/DebuggerRunner.java b/net.sourceforge.phpeclipse.launching/src/net/sourceforge/phpdt/internal/launching/DebuggerRunner.java
index ab6157c..95938af 100644
--- a/net.sourceforge.phpeclipse.launching/src/net/sourceforge/phpdt/internal/launching/DebuggerRunner.java
+++ b/net.sourceforge.phpeclipse.launching/src/net/sourceforge/phpdt/internal/launching/DebuggerRunner.java
@@ -26,12 +26,12 @@ public class DebuggerRunner extends InterpreterRunner {
 
 	public IProcess run(InterpreterRunnerConfiguration configuration,
 			ILaunch launch) {
-		String[] env;
-		String name, value;
+		//String[] env;
+		//String name, value;
 		PHPDBGProxy newPHPDBGProxy = new PHPDBGProxy(configuration
 				.useRemoteDebugger(), configuration.getRemoteSourcePath(),
 				configuration.usePathTranslation(), configuration.getPathMap());
-		int pos;
+		//int pos;
 
 		IProcess process = null;
 		PHPDebugTarget debugTarget = new PHPDebugTarget(launch, process);
@@ -82,7 +82,7 @@ public class DebuggerRunner extends InterpreterRunner {
 	protected void setEnvironmentVariables(
 			InterpreterRunnerConfiguration configuration, int listenPort) {
 		String DBGSessID;
-		String env[] = new String[18];
+		//String env[] = new String[18];
 		long id = Math.round(Math.random() * 100000);
 
 		DBGSessID = "DBGSESSID=" + id + "@clienthost:" + listenPort;