X-Git-Url: http://git.phpeclipse.com
diff --git a/net.sourceforge.phpeclipse/src/test/PHPParser.java b/net.sourceforge.phpeclipse/src/test/PHPParser.java
index 3414145..25183f6 100644
--- a/net.sourceforge.phpeclipse/src/test/PHPParser.java
+++ b/net.sourceforge.phpeclipse/src/test/PHPParser.java
@@ -19,7 +19,6 @@ import net.sourceforge.phpdt.internal.compiler.ast.*;
import net.sourceforge.phpdt.internal.compiler.parser.OutlineableWithChildren;
import net.sourceforge.phpdt.internal.compiler.parser.Outlineable;
import net.sourceforge.phpdt.internal.compiler.parser.PHPOutlineInfo;
-import net.sourceforge.phpdt.internal.ui.util.StringUtil;
/**
* A new php parser.
@@ -193,9 +192,9 @@ public final class PHPParser extends PHPParserSuperclass implements PHPParserCon
Hashtable attributes = new Hashtable();
- current = StringUtil.replaceAll(current, "\n", "");
- current = StringUtil.replaceAll(current, "", "");
- current = StringUtil.replaceAll(current, "", "");
+ current = current.replaceAll("\n", "");
+ current = current.replaceAll("", "");
+ current = current.replaceAll("", "");
MarkerUtilities.setMessage(attributes, current);
if (current.indexOf(PARSE_ERROR_STRING) != -1)