Skip to content

Commit

Permalink
Fix javadoc generation
Browse files Browse the repository at this point in the history
  • Loading branch information
Pyrofab committed Oct 25, 2024
1 parent f5443b2 commit e69be74
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ tasks.javadoc {
links(
"https://guava.dev/releases/21.0/api/docs/",
"https://asm.ow2.io/javadoc/",
"https://docs.oracle.com/javase/8/docs/api/",
"http://jenkins.liteloader.com/job/Mixin/javadoc/",
"https://logging.apache.org/log4j/2.x/log4j-api/apidocs/"
"https://docs.oracle.com/en/java/javase/21/docs/api/",
"https://jenkins.liteloader.com/job/Mixin/javadoc/",
"https://logging.apache.org/log4j/2.x/javadoc/log4j-api/"
// Need to add minecraft jd publication etc once there is one available
)
// Disable the crazy super-strict doclint tool in Java 8
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
*/
public interface ItemComponentInitializer extends ComponentRegistrationInitializer {
/**
* Called to register component migrations from CCA to {@link net.minecraft.component.DataComponentType}.
* Called to register component migrations from CCA to {@link net.minecraft.component.ComponentType}.
*
* @param registry an {@link ItemComponentMigrationRegistry} for component migrations
* @since 7.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* OR OTHER DEALINGS IN THE SOFTWARE.
*/
/**
* @deprecated level components are a legacy feature that has been superseded by scoreboard components
* Deprecated: level components are a legacy feature that has been superseded by scoreboard components
*/
@Deprecated(since = "6.0.0")
@MethodsReturnNonnullByDefault
Expand Down

0 comments on commit e69be74

Please sign in to comment.