Remove wrong condition part: there could be irrelevant overrides from Kotlin

This commit is contained in:
Denis Zharkov
2015-10-28 11:26:55 +03:00
parent 291f0e57d1
commit 5755af6b27
10 changed files with 363 additions and 2 deletions

View File

@@ -0,0 +1,4 @@
public class A extends AImpl implements java.util.List<String> {
public <T> T[] toArray(T[] a) {return null;}
public Object[] toArray() {return null;}
}