mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 11:50:57 +07:00
9 lines
129 B
Java
9 lines
129 B
Java
// "Move assignment to field declaration" "false"
|
|
public class X {
|
|
int i;
|
|
X(int from)
|
|
{
|
|
<caret>i=from;
|
|
}
|
|
}
|