Small bug fixes for the debugger client.
[phpeclipse.git] / net.sourceforge.phpeclipse.debug.core / src / net / sourceforge / phpdt / internal / debug / core / PHPDBGInterface.java
index e0e19cc..ef96492 100644 (file)
@@ -11,19 +11,19 @@ Contributors:
 **********************************************************************/
 package net.sourceforge.phpdt.internal.debug.core;
 
-import java.io.IOException;
 import java.io.BufferedReader;
+import java.io.IOException;
 import java.io.OutputStream;
 import java.util.Vector;
 
+import net.sourceforge.phpdt.internal.debug.core.model.PHPDBGEvalString;
+import net.sourceforge.phpdt.internal.debug.core.model.PHPStackFrame;
+import net.sourceforge.phpdt.internal.debug.core.model.PHPVariable;
+
 import org.eclipse.core.runtime.IStatus;
 import org.eclipse.core.runtime.Status;
 import org.eclipse.debug.core.DebugException;
 
-import net.sourceforge.phpdt.internal.debug.core.model.PHPStackFrame;
-import net.sourceforge.phpdt.internal.debug.core.model.PHPVariable;
-import net.sourceforge.phpdt.internal.debug.core.model.PHPDBGEvalString;
-
 public class PHPDBGInterface {
 
        // Public
@@ -528,8 +528,8 @@ public class PHPDBGInterface {
                                                // To print errors on the console, I must execute a code in the
                                                // php context, that write the stderr... I didn't found a better way
                                                // TODO: Find a better way????
-                                               String codeExec= "";
-                                               codeExec= "fwrite(fopen('php://stderr', 'w'),\\\"" + error + "\\\");";
+//                                             String codeExec= "";
+//                                             codeExec= "fwrite(fopen('php://stderr', 'w'),\\\"" + error + "\\\");";
 //                                             try {
 //                                                     evalBlock("eval(\"" + codeExec + "\");");
 //                                             } catch (DebugException e) {