From e01189b756db375f6d9ebc3cb8e75f7391308061 Mon Sep 17 00:00:00 2001 From: Alexey Kudravtsev Date: Fri, 16 Oct 2009 19:11:25 +0400 Subject: [PATCH] cleanup --- .../siyeh/ipp/comment/MoveCommentToSeparateLineIntention.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/IntentionPowerPak/src/com/siyeh/ipp/comment/MoveCommentToSeparateLineIntention.java b/plugins/IntentionPowerPak/src/com/siyeh/ipp/comment/MoveCommentToSeparateLineIntention.java index af5ea44c5d51..b0e846377ace 100644 --- a/plugins/IntentionPowerPak/src/com/siyeh/ipp/comment/MoveCommentToSeparateLineIntention.java +++ b/plugins/IntentionPowerPak/src/com/siyeh/ipp/comment/MoveCommentToSeparateLineIntention.java @@ -30,7 +30,7 @@ public class MoveCommentToSeparateLineIntention extends Intention { return new CommentOnLineWithSourcePredicate(); } - public void processIntention(PsiElement element) + public void processIntention(@NotNull PsiElement element) throws IncorrectOperationException { final PsiComment selectedComment = (PsiComment)element; PsiElement elementToCheck = selectedComment;