SQL code style per dialect: UI

GitOrigin-RevId: 9b1b3e745d4c8acef5a4a1018714e004e5423519
This commit is contained in:
Leonid Bushuev
2019-05-03 01:37:38 +03:00
committed by intellij-monorepo-bot
parent d712ac9901
commit dc1a52762e
277 changed files with 3484 additions and 2811 deletions
@@ -1,13 +0,0 @@
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);
}
}