Skip to content

Commit

Permalink
Fixed invalid method name from previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Intelli committed Jun 18, 2024
1 parent aaa7a35 commit 49eb176
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/net/coreprotect/utility/Util.java
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ public static byte[] convertByteData(Object data) {
return result;
}

public static ItemMeta deserializeItemMetax(Class<? extends ItemMeta> itemMetaClass, Map<String, Object> args) {
public static ItemMeta deserializeItemMeta(Class<? extends ItemMeta> itemMetaClass, Map<String, Object> args) {
try {
DelegateDeserialization delegate = itemMetaClass.getAnnotation(DelegateDeserialization.class);
return (ItemMeta) ConfigurationSerialization.deserializeObject(args, delegate.value());
Expand Down

0 comments on commit 49eb176

Please sign in to comment.