Skip to content

Commit

Permalink
Fix javadoc links
Browse files Browse the repository at this point in the history
  • Loading branch information
amaembo committed Oct 2, 2024
1 parent 5a4e1b6 commit 0c06dec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/jvmMain/java/org/jetbrains/annotations/NotNull.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* <p>
* If a method overrides a superclass method, and the superclass method specifies the nullability on parameter
* or return type, then the subclass method should specify the same nullability, either directly or indirectly
* via {@link @NotNullByDefault}. The only exception is the covariant return type nullability: if the superclass
* via {@link NotNullByDefault}. The only exception is the covariant return type nullability: if the superclass
* method is declared to return nullable value, then subclass may declare to return a not-null value.
* <p>
* The tools may issue a warning if the nullability for a subclass method contradicts from the specified nullability
Expand Down
2 changes: 1 addition & 1 deletion src/jvmMain/java/org/jetbrains/annotations/Nullable.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* <p>
* If a method overrides a superclass method, and the superclass method specifies the nullability on parameter
* or return type, then the subclass method should specify the same nullability, either directly or indirectly
* via {@link @NotNullByDefault}. The only exception is the covariant return type nullability: if the superclass
* via {@link NotNullByDefault}. The only exception is the covariant return type nullability: if the superclass
* method is declared to return nullable value, then subclass may declare to return a not-null value.
* <p>
* The tools may issue a warning if the nullability for a subclass method contradicts from the specified nullability
Expand Down

0 comments on commit 0c06dec

Please sign in to comment.