X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/actions/RemoveBlockCommentAction.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/actions/RemoveBlockCommentAction.java index 562c26a..60eadc2 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/actions/RemoveBlockCommentAction.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/actions/RemoveBlockCommentAction.java @@ -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$ }