1) Fixed issue #347: Syntax highlight doesn't like apostrophe in heredoc.
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / text / SmartSemicolonAutoEditStrategy.java
index 4f133c3..e0bc0c7 100644 (file)
@@ -13,7 +13,9 @@ package net.sourceforge.phpdt.internal.ui.text;
 import java.util.Arrays;
 
 import net.sourceforge.phpdt.internal.compiler.parser.Scanner;
-import net.sourceforge.phpdt.internal.core.Assert;
+//incastrix
+//import net.sourceforge.phpdt.internal.corext.Assert;
+import org.eclipse.core.runtime.Assert;
 import net.sourceforge.phpdt.internal.ui.text.SmartBackspaceManager.UndoSpec;
 import net.sourceforge.phpdt.ui.PreferenceConstants;
 import net.sourceforge.phpeclipse.PHPeclipsePlugin;
@@ -62,7 +64,7 @@ public class SmartSemicolonAutoEditStrategy implements IAutoEditStrategy {
        /** Char representation of a semicolon. */
        private static final char SEMICHAR = ';';
 
-       /** String represenattion of a opening brace. */
+       /** String representation of a opening brace. */
        private static final String BRACE = "{"; //$NON-NLS-1$
 
        /** Char representation of a opening brace */