Skip to content

Commit

Permalink
Fix comment formatting from GJF causing an error in [G's] Error Prone…
Browse files Browse the repository at this point in the history
… checks.
  • Loading branch information
lazaroclapp committed Jul 13, 2020
1 parent ee9e16f commit 5e7b064
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions nullaway/src/main/java/com/uber/nullaway/LibraryModels.java
Expand Up @@ -84,8 +84,9 @@ public interface LibraryModels {
* Get (method, parameter) pairs that cause the method to return <code>null</code> when passed
* <code>null</code> on that parameter.
*
* <p>This is equivalent to annotating a method with <code>
* @Contract("!null -&gt; !null") @Nullable</code> or similar.
* <p>This is equivalent to annotating a method with a contract like:
*
* <pre><code>@Contract("!null -&gt; !null") @Nullable</code></pre>
*
* @return map from the names of null-in-implies-null out methods to the indexes of the arguments
* that determine nullness of the return.
Expand Down

0 comments on commit 5e7b064

Please sign in to comment.