ModifierFix: disable for synthetic elements (e.g. record fields)

GitOrigin-RevId: e7e9f4ef09ccadcb85321e98fa8980bcfba8f8fd
This commit is contained in:
Tagir Valeev
2020-01-16 08:11:51 +00:00
committed by intellij-monorepo-bot
parent 21cc3d6654
commit 1cedfe2417
4 changed files with 51 additions and 0 deletions
@@ -0,0 +1,9 @@
// "Make 'Point.x' not final" "false"
public record Point(int x, int y, long depth) {
public Point(int x, int y) {
this(x, y, 10);
this.<caret>x = x;
this.y = y;
}
}
@@ -0,0 +1,7 @@
// "Make 'Point.x' not final" "false"
public record Point(int x, int y, long depth) {
public void setX(int x) {
this.<caret>x = x;
}
}