diff --git a/nullaway/src/main/java/com/uber/nullaway/LibraryModels.java b/nullaway/src/main/java/com/uber/nullaway/LibraryModels.java index 5942e62a3b..c7ac987c34 100644 --- a/nullaway/src/main/java/com/uber/nullaway/LibraryModels.java +++ b/nullaway/src/main/java/com/uber/nullaway/LibraryModels.java @@ -84,8 +84,9 @@ public interface LibraryModels { * Get (method, parameter) pairs that cause the method to return null when passed * null on that parameter. * - *

This is equivalent to annotating a method with - * @Contract("!null -> !null") @Nullable or similar. + *

This is equivalent to annotating a method with a contract like: + * + *

@Contract("!null -> !null") @Nullable
* * @return map from the names of null-in-implies-null out methods to the indexes of the arguments * that determine nullness of the return.