java-decompiler: post-import cleanup (tests reorganized)

This commit is contained in:
Roman Shevchenko
2014-09-01 15:05:08 +04:00
parent 1a4e48d11d
commit 3854b67daa
24 changed files with 282 additions and 137 deletions

View File

@@ -0,0 +1,16 @@
package pkg;
public class TestClassSwitch {
public void testCaseOrder(int var1) {
switch(var1) {
case 5:
System.out.println(5);
default:
return;
case 13:
System.out.println(13);
}
}
}