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

@@ -17,15 +17,14 @@ package pkg;
public class TestClassSwitch {
public void testCaseOrder(int a) {
switch(a) {
case 13:
System.out.println(13);
return;
case 5:
System.out.println(5);
}
public void testCaseOrder(int a) {
switch (a) {
case 13:
System.out.println(13);
return;
case 5:
System.out.println(5);
}
}
}