Annotations.EMPTY replaced with Annotations.Companion.getEMPTY() in java classes

This commit is contained in:
Michael Bogdanov
2015-10-08 14:35:14 +03:00
parent 12afbffb09
commit 53ced57c42
31 changed files with 61 additions and 61 deletions
@@ -57,7 +57,7 @@ public class DeserializedTypeParameterDescriptor extends AbstractLazyTypeParamet
}
Set<JetType> result = new LinkedHashSet<JetType>(proto.getUpperBoundCount());
for (ProtoBuf.Type upperBound : proto.getUpperBoundList()) {
result.add(typeDeserializer.type(upperBound, Annotations.EMPTY));
result.add(typeDeserializer.type(upperBound, Annotations.Companion.getEMPTY()));
}
return result;
}