[Java. Code Formatting] Add check to TypeAnnotationUtil that language level is at least 8

IDEA-353192

GitOrigin-RevId: e8d2d8270dbc1c39300d5a2d55ef993e433ccdbc
This commit is contained in:
Georgii Ustinov
2024-06-20 11:57:57 +03:00
committed by intellij-monorepo-bot
parent 7fe1e933e6
commit 41cf8f6fe3
6 changed files with 72 additions and 3 deletions

View File

@@ -6,7 +6,8 @@ public interface MyTestClass {
}
public class MyRealTestClass implements MyTestClass {
@NotNull String implementMe(String arg) {
@NotNull
String implementMe(String arg) {
}
}