Revert formatting type annotations on the same line before the type in method

IDEA-353192 IDEA-354026

GitOrigin-RevId: cbf3e0b332517194f35d979a631cbbb0121893b4
This commit is contained in:
Georgii Ustinov
2024-06-01 09:25:44 +03:00
committed by intellij-monorepo-bot
parent 4b4a1c5abd
commit 3b50806cf1
24 changed files with 54 additions and 325 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) {
}
}