MoveFieldAssignmentToInitializerInspection: disable for record components

GitOrigin-RevId: a8055e5eaf54381011763d64f34433d62142a4b8
This commit is contained in:
Tagir Valeev
2020-07-07 11:57:24 +07:00
committed by intellij-monorepo-bot
parent 452937229a
commit 0fcad6c545
3 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
// "Move assignment to field declaration" "false"
record S(int... j ){
S(int j){
this.j <caret>= 0;
}
}