Merge branch 'master' into vplyashkun/inplace_rename_lags

GitOrigin-RevId: aaecc2a32e4e42de827efb45b8df733874a722e4
This commit is contained in:
Vladimir Plyashkun
2019-05-03 01:41:29 +03:00
committed by intellij-monorepo-bot
parent 8198db1ca9
commit 61a3e18b78
1377 changed files with 17931 additions and 13932 deletions
@@ -0,0 +1,13 @@
class Test {
boolean check(String s) {
if (s == null) return false;
s = s.trim();
if (s.isEmpty()) return false;
return s.length() % 2 == 0;
}
boolean use(String s) {
return !<caret>check(s + s);
}
}