mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-13 11:36:53 +07:00
11 lines
183 B
Java
11 lines
183 B
Java
// "Assign Parameter to Field 'myStr'" "true"
|
|
|
|
|
|
class Foo1 {
|
|
final String myStr;
|
|
Foo1(String s<caret>tr) {
|
|
if(Math.random() > 0.5) {
|
|
} else {
|
|
}
|
|
}
|
|
} |