IDEA-230807 Change Signature refactoring inserts annotations for return type fully-qualified

GitOrigin-RevId: 97c3ae10bdcca6c2f9517e187691880516b71cbc
This commit is contained in:
Tagir Valeev
2020-04-02 10:34:22 +07:00
committed by intellij-monorepo-bot
parent 052e2eb5dd
commit 90e778536b
4 changed files with 18 additions and 1 deletions

View File

@@ -0,0 +1,3 @@
class X {
String <caret>test() { return null; }
}

View File

@@ -0,0 +1,5 @@
import org.jetbrains.annotations.NotNull;
class X {
@NotNull String test() { return null; }
}