java-decompiler: post-import cleanup (test sources reformatted)

This commit is contained in:
Roman Shevchenko
2014-09-01 19:48:39 +04:00
parent e629738a46
commit c0c83126a6
8 changed files with 174 additions and 182 deletions

View File

@@ -26,10 +26,10 @@ public class TestClassLambda {
public void testLambda1() {
int var1 = (int)Math.random();
Runnable var2 = () -> {
System.out.println("hello" + var1);
System.out.println("hello1" + var1);
};
Runnable var3 = () -> {
System.out.println("hello1" + var1);
System.out.println("hello2" + var1);
};
}