mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-03 07:20:55 +07:00
13 lines
181 B
Java
13 lines
181 B
Java
// "Create Field For Parameter 'p1'" "true"
|
|
|
|
class Test{
|
|
private final int myP1;
|
|
int myP2;
|
|
|
|
Test(int p<caret>1, int p2){
|
|
myP1 = p1;
|
|
myP2 = p2;
|
|
}
|
|
}
|
|
|