Cleanup (unneeded restore in tests; unneeded exceptions; formatting; typos)

This commit is contained in:
Roman Shevchenko
2017-04-19 15:52:10 +02:00
parent be1885f5d5
commit f71fdbba2c
5 changed files with 155 additions and 300 deletions
@@ -0,0 +1,9 @@
public class test {
void f() {
int k1 = 1;
int k2 = 2;
int[] array = new int[]{k1, k2};
System.out.print(k1);
}
}