Skip to content
This repository was archived by the owner on Nov 28, 2025. It is now read-only.

things

1b78ddf
Select commit
Loading
Failed to load commit list.
Open

Update to 1.21.9 #221

things
1b78ddf
Select commit
Loading
Failed to load commit list.
codefactor.io / CodeFactor succeeded Oct 18, 2025 in 3s

5 issues fixed. 3 issues found.

Annotations

Check warning on line 23 in src/main/kotlin/io/github/dockyardmc/entity/handlers/EntityMetadataHandler.kt

See this annotation in the file changed.

@codefactor-io codefactor-io / CodeFactor

src/main/kotlin/io/github/dockyardmc/entity/handlers/EntityMetadataHandler.kt#L23

Parentheses in (parentValue.toInt() and definition.bitMask.toInt()) are unnecessary and can be replaced with: parentValue.toInt() and definition.bitMask.toInt() (detekt.UnnecessaryParentheses)

Check warning on line 25 in src/main/kotlin/io/github/dockyardmc/entity/handlers/EntityMetadataHandler.kt

See this annotation in the file changed.

@codefactor-io codefactor-io / CodeFactor

src/main/kotlin/io/github/dockyardmc/entity/handlers/EntityMetadataHandler.kt#L25

Parentheses in (metadataLayers[player]!!) are unnecessary and can be replaced with: metadataLayers[player]!! (detekt.UnnecessaryParentheses)

Check warning on line 53 in src/main/kotlin/io/github/dockyardmc/protocol/types/LpVector3d.kt

See this annotation in the file changed.

@codefactor-io codefactor-io / CodeFactor

src/main/kotlin/io/github/dockyardmc/protocol/types/LpVector3d.kt#L53

Parentheses in (i and SCALE_BITS_MASK) are unnecessary and can be replaced with: i and SCALE_BITS_MASK. (detekt.UnnecessaryParentheses)