Skip to content

Commit 0c06dec

Browse files
committed
Fix javadoc links
1 parent 5a4e1b6 commit 0c06dec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/jvmMain/java/org/jetbrains/annotations/NotNull.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* <p>
3131
* If a method overrides a superclass method, and the superclass method specifies the nullability on parameter
3232
* or return type, then the subclass method should specify the same nullability, either directly or indirectly
33-
* via {@link @NotNullByDefault}. The only exception is the covariant return type nullability: if the superclass
33+
* via {@link NotNullByDefault}. The only exception is the covariant return type nullability: if the superclass
3434
* method is declared to return nullable value, then subclass may declare to return a not-null value.
3535
* <p>
3636
* The tools may issue a warning if the nullability for a subclass method contradicts from the specified nullability

src/jvmMain/java/org/jetbrains/annotations/Nullable.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* <p>
3838
* If a method overrides a superclass method, and the superclass method specifies the nullability on parameter
3939
* or return type, then the subclass method should specify the same nullability, either directly or indirectly
40-
* via {@link @NotNullByDefault}. The only exception is the covariant return type nullability: if the superclass
40+
* via {@link NotNullByDefault}. The only exception is the covariant return type nullability: if the superclass
4141
* method is declared to return nullable value, then subclass may declare to return a not-null value.
4242
* <p>
4343
* The tools may issue a warning if the nullability for a subclass method contradicts from the specified nullability

0 commit comments

Comments
 (0)