Android : @NonNull Annotation not working in Android Studio

on Wednesday, October 8, 2014



import android.support.annotation.NonNull;

public
@NonNull
Result handleFollowForwardResult(@NonNull Result tempResult, @NonNull Result oldResult) {
return null;
}


does not give any errors or warning? Isn't the point of the annotation to check for exactly this?


0 comments:

Post a Comment