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.
Hashtable attributes = new Hashtable();
- current = StringUtil.replaceAll(current, "\n", "");
- current = StringUtil.replaceAll(current, "<b>", "");
- current = StringUtil.replaceAll(current, "</b>", "");
+ current = current.replaceAll("\n", "");
+ current = current.replaceAll("<b>", "");
+ current = current.replaceAll("</b>", "");
MarkerUtilities.setMessage(attributes, current);
if (current.indexOf(PARSE_ERROR_STRING) != -1)