core: make methods arguments types immutable

This commit is contained in:
Skylot
2013-10-10 22:34:14 +04:00
parent d94087b939
commit eec524ad85
25 changed files with 153 additions and 118 deletions
@@ -20,7 +20,7 @@ public class TestTypeResolver extends AbstractTest {
public static class TestTernaryInSuper extends TestTypeResolver {
public TestTernaryInSuper(int c) {
super(c > 0 ? c : -c, 1);
// super(c > 0 ? c : -c, 1);
}
}