Cleanup (formatting)

This commit is contained in:
Roman Shevchenko
2017-07-12 19:33:18 +02:00
parent be99f69592
commit dcbcfe3eb9
6 changed files with 66 additions and 80 deletions
@@ -8,8 +8,8 @@ import java.util.List;
@interface N {}
class a {
List<@N String> f() {
return ;
List<@N String> f() {
return;
}
}
@@ -17,4 +17,4 @@ class b extends a {
List<@N String> f() {
return null;
}
}
}
@@ -8,8 +8,8 @@ import java.util.List;
@interface N {}
class a {
void f() {
return ;
void f() {
return;
}
}
@@ -17,4 +17,4 @@ class b extends a {
<caret>List<@N String> f() {
return null;
}
}
}