Reformat with context on postponed formatting: fixed java test data

This commit is contained in:
Yaroslav Lepenkin
2015-07-07 17:24:09 +03:00
parent b4e8c6e38d
commit 6731485cb8
5 changed files with 12 additions and 14 deletions
@@ -8,14 +8,14 @@ public class Foo {
class Bar {
public static void main(String[] args) {
Foo.bar(new Runnable() {
@Override
public void run() {
doRun();
}
private void doRun() {
// Woo-hoo
}
@Override
public void run() {
doRun();
}
private void doRun() {
// Woo-hoo
}
});
}
}