[java] remove redundant import when "Remove annotation" quick fix is applied (IDEA-288488)

GitOrigin-RevId: 562cf18eafa636a761c75ae3e9630bdab3eff760
This commit is contained in:
Nikolay Chashnikov
2022-02-11 09:48:19 +03:00
committed by intellij-monorepo-bot
parent 6f8b8172ac
commit 9c66641799
7 changed files with 25 additions and 7 deletions

View File

@@ -1,7 +1,5 @@
// "Remove annotation" "true"
import org.jetbrains.annotations.*;
class Foo {
<caret>int foo(){return 0;}
}