mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
java type annotations: treat nullability annotations as type_use to avoid reordering of a modifier list (IDEA-206570)
GitOrigin-RevId: 292b1052c44815db83d6033a30b44e56c8b4fa34
This commit is contained in:
committed by
intellij-monorepo-bot
parent
38ed3bacc6
commit
a5278f0dbb
+1
-2
@@ -9,9 +9,8 @@ abstract class Foo<T> {
|
||||
|
||||
class FooImpl extends Foo<String> {
|
||||
|
||||
@Nullable
|
||||
@Override
|
||||
public String getSmth() {
|
||||
public @Nullable String getSmth() {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user