Skip to content

Commit

Permalink
Update mod-shared/src/main/java/net/kyori/adventure/platform/modcommo…
Browse files Browse the repository at this point in the history
…n/impl/WrappedComponent.java

Co-authored-by: Riley Park <[email protected]>
  • Loading branch information
jpenilla and kashike authored Oct 11, 2024
1 parent 560725c commit 67c48d2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ public int hashCode() {

@Override
public boolean equals(final Object obj) {
if (obj instanceof WrappedComponent wrappedComponent) {
if (obj instanceof final WrappedComponent wrappedComponent) {
return this.wrapped().equals(wrappedComponent.wrapped());
}
return this.deepConverted().equals(obj);
Expand Down

0 comments on commit 67c48d2

Please sign in to comment.