mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 15:53:38 +07:00
GitOrigin-RevId: a8b0318c61e543511cd42528cea239f21e03d461
11 lines
177 B
Java
11 lines
177 B
Java
class C {
|
|
final int x1;
|
|
int x2;
|
|
|
|
public C(int x1, int x2) {
|
|
<selection>System.out.println();
|
|
this.x1 = x1;</selection>
|
|
this.x2 = x2;
|
|
}
|
|
|
|
} |