IDEA-149077 Default decompiler is chosen for several classes instead of Fernflower - tests

This commit is contained in:
Egor.Ushakov
2017-05-10 17:02:31 +03:00
parent 1f0d42ba0d
commit adbf29f8ce
68 changed files with 20713 additions and 4 deletions

View File

@@ -0,0 +1,18 @@
import java.util.Collection;
import java.util.Iterator;
public abstract class i<T> implements k<T> {
public void a(Collection<? extends T> var1) {
boolean var4 = n.c;
Iterator var2 = var1.iterator();
while(var2.hasNext()) {
Object var3 = var2.next();
this.a(var3);
if (var4) {
break;
}
}
}
}