mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
13 lines
205 B
Java
13 lines
205 B
Java
// "Assign parameter to field 'myStr'" "false"
|
|
|
|
|
|
class Foo1 {
|
|
final String myStr;
|
|
Foo1(String str, int i) {
|
|
myStr = (str);
|
|
}
|
|
|
|
Foo1(String st<caret>r) {
|
|
this(str, 2);
|
|
}
|
|
} |