Added "Task Tags" functionality (TODO,...)
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / actions / RemoveBlockCommentAction.java
index 562c26a..60eadc2 100644 (file)
@@ -60,7 +60,7 @@ public class RemoveBlockCommentAction extends BlockCommentAction {
                
                while (partEndOffset < endOffset) {
                        
-                       if (partition.getType() == IPHPPartitions.PHP_MULTILINE_COMMENT) {
+                       if (partition.getType() == IPHPPartitions.PHP_PHPDOC_COMMENT) {
                                edits.add(factory.createEdit(partOffset, tokenLength, "")); //$NON-NLS-1$
                                edits.add(factory.createEdit(partEndOffset - tokenLength, tokenLength, "")); //$NON-NLS-1$
                        }
@@ -70,7 +70,7 @@ public class RemoveBlockCommentAction extends BlockCommentAction {
                        partEndOffset= partOffset + partition.getLength();
                }
 
-               if (partition.getType() == IPHPPartitions.PHP_MULTILINE_COMMENT) {
+               if (partition.getType() == IPHPPartitions.PHP_PHPDOC_COMMENT) {
                        edits.add(factory.createEdit(partOffset, tokenLength, "")); //$NON-NLS-1$
                        edits.add(factory.createEdit(partEndOffset - tokenLength, tokenLength, "")); //$NON-NLS-1$
                }