inline: tweak search scope for conflicts replacement

This commit is contained in:
anna
2010-07-16 13:28:30 +04:00
parent 83b1df153e
commit 9d736f9820
5 changed files with 41 additions and 4 deletions
@@ -0,0 +1,14 @@
public class ABl {
void foo(int fe) {
System.out.println(fe);
}
void bar(boolean br) {
int fe = 0;
if (br) {
foo(fe);
} else {
f<caret>oo(11);
}
}
}