else on the next line

as requested by http://confluence.jetbrains.net/display/JET/Code+Conventions+for+Java

(sed is your friend)
This commit is contained in:
Stepan Koltsov
2012-04-10 00:03:13 +04:00
parent 0d8088268a
commit a889e29147
91 changed files with 578 additions and 289 deletions
@@ -147,7 +147,8 @@ class DiType {
public String toString() {
if (typeParameters.size() > 0) {
return clazz + "<...>";
} else {
}
else {
return clazz.toString();
}
}