mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 08:09:39 +07:00
IDEA-230807 Change Signature refactoring inserts annotations for return type fully-qualified
GitOrigin-RevId: 97c3ae10bdcca6c2f9517e187691880516b71cbc
This commit is contained in:
committed by
intellij-monorepo-bot
parent
052e2eb5dd
commit
90e778536b
@@ -0,0 +1,3 @@
|
||||
class X {
|
||||
String <caret>test() { return null; }
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
class X {
|
||||
@NotNull String test() { return null; }
|
||||
}
|
||||
Reference in New Issue
Block a user