Delete ErrorUtils.isError(TypeConstructor)

This commit is contained in:
Alexander Udalov
2013-09-18 16:46:07 +04:00
parent dea1e6650f
commit e8b10b3e4d
6 changed files with 20 additions and 38 deletions
@@ -259,7 +259,8 @@ public class TypeDeserializer {
@Override
public boolean isError() {
return ErrorUtils.isError(getConstructor());
ClassifierDescriptor descriptor = getConstructor().getDeclarationDescriptor();
return descriptor != null && ErrorUtils.isError(descriptor);
}
@Override