Minor, delete obsolete check

'superCall' is now never a JetDelegatorByExpressionSpecifier, so the check is
useless
This commit is contained in:
Alexander Udalov
2014-07-19 02:12:29 +04:00
parent abf46d593c
commit cf8e83f4f8
@@ -1201,10 +1201,6 @@ public class ImplementationBodyCodegen extends ClassBodyCodegen {
}
for (JetDelegationSpecifier specifier : myClass.getDelegationSpecifiers()) {
if (specifier == superCall) {
continue;
}
if (specifier instanceof JetDelegatorByExpressionSpecifier) {
genCallToDelegatorByExpressionSpecifier(iv, codegen, (JetDelegatorByExpressionSpecifier) specifier, fieldsInfo);
}