added NotNull annotation
This commit is contained in:
Svetlana Isakova
2012-10-23 14:41:30 +04:00
parent 41e355da51
commit 0acb6cb64d
@@ -16,6 +16,7 @@
package org.jetbrains.jet.lang.psi;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.jet.lang.psi.Call.CallType;
/**
@@ -30,7 +31,8 @@ public class CallKey {
this.element = element;
}
public static CallKey create(CallType callType, JetExpression element) {
@NotNull
public static CallKey create(@NotNull CallType callType, @NotNull JetExpression element) {
return new CallKey(callType, element);
}