mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
ModifierFix: disable for synthetic elements (e.g. record fields)
GitOrigin-RevId: e7e9f4ef09ccadcb85321e98fa8980bcfba8f8fd
This commit is contained in:
committed by
intellij-monorepo-bot
parent
21cc3d6654
commit
1cedfe2417
+9
@@ -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;
|
||||
}
|
||||
}
|
||||
+7
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user