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:
Anna Kozlova
2021-01-28 19:05:48 +00:00
committed by intellij-monorepo-bot
parent 38ed3bacc6
commit a5278f0dbb
2 changed files with 4 additions and 3 deletions
@@ -9,9 +9,8 @@ abstract class Foo<T> {
class FooImpl extends Foo<String> {
@Nullable
@Override
public String getSmth() {
public @Nullable String getSmth() {
return null;
}
}