mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
13 lines
238 B
Java
13 lines
238 B
Java
// "Assign parameter to field 'myStr'" "false"
|
|
|
|
|
|
class Foo1 {
|
|
final String myStr;
|
|
Foo1(String s<caret>tr) {
|
|
if(Math.random() > 0.5) {
|
|
myStr = "foo";
|
|
} else {
|
|
myStr = "bar";
|
|
}
|
|
}
|
|
} |