X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/php/PartitionStack.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/php/PartitionStack.java index 380b4cf..85b9774 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/php/PartitionStack.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/php/PartitionStack.java @@ -4,16 +4,18 @@ */ package net.sourceforge.phpeclipse.phpeditor.php; -import java.util.*; +import java.util.ArrayList; -import org.eclipse.jface.text.*; +import net.sourceforge.phpdt.internal.ui.text.*; + +import org.eclipse.jface.text.IDocument; /** * A stack for keeping track of the contenttypes for partitions that * contain other partitions. * * @author Stefan Langer - * @version $Revision: 1.1 $ + * @version $Revision: 1.3 $ */ public class PartitionStack { @@ -45,7 +47,7 @@ public class PartitionStack return (String)fPartitionStack.get(fStackTop--); } - return IPHPPartitionScannerConstants.HTML; + return IPHPPartitions.HTML; } public boolean isEmpty()