Minor: added @NotNull annotations from interfaces.

This commit is contained in:
Evgeny Gerashchenko
2012-04-08 19:42:46 +04:00
parent eeb991e338
commit 0d84a045ee
2 changed files with 2 additions and 0 deletions
@@ -39,6 +39,7 @@ public interface ValueParameterDescriptor extends VariableDescriptor, Annotated
@NotNull
JetType getType();
@NotNull
@Override
ValueParameterDescriptor getOriginal();
@@ -51,6 +51,7 @@ public abstract class VariableDescriptorImpl extends DeclarationDescriptorImpl i
super(containingDeclaration, annotations, name);
}
@NotNull
@Override
public JetType getType() {
return outType;