IDEA-211473 Inline method: process some boolean methods with multiple exits specially

GitOrigin-RevId: 5e3bc7e8577a346059192cb7d68bef7eef818ffd
This commit is contained in:
Tagir Valeev
2019-04-23 13:54:14 +07:00
committed by intellij-monorepo-bot
parent 8f4ed82473
commit 92507ef9b6
18 changed files with 426 additions and 41 deletions

View File

@@ -0,0 +1,17 @@
class Test {
private boolean test(String s) {
if(s != null) {
s = s.trim();
if (s.isEmpty()) {
return true;
}
}
return false;
}
String use(String s) {
if(<caret>test(s+s)) throw new IllegalArgumentException();
else return "nice";
}
}