mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
if one need to extract subpart of concatenation, it's required to extract a variable; similar to parts of polyadic expression GitOrigin-RevId: 46cd1a75303b72ea64e9694617fb43f4d3da5982
5 lines
141 B
Java
5 lines
141 B
Java
class a {
|
|
void foo(String s, int i, boolean b) {
|
|
String desc = "Our " + s + " has " + (b ? i + " doo<caret>rs" : "many windows");
|
|
}
|
|
} |