Skip to content

Commit

Permalink
fix string
Browse files Browse the repository at this point in the history
  • Loading branch information
Ecdcaeb authored Dec 25, 2024
1 parent 361859a commit b6439f8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public Set<ASMData> getAll(Class<?> type)
return this.getAll(type.getName().replace('.', '/'));
} else if (type.isAnnotation()) {
return this.getAll(type.getName());
} else throw new IllegalArgumentException(The type are trying to be got from ASMDataTable is neither annotation nor interface");
} else throw new IllegalArgumentException("The type are trying to be got from ASMDataTable is neither annotation nor interface");
}

public void addASMData(ModCandidate candidate, String annotation, String className, @Nullable String objectName, @Nullable Map<String,Object> annotationInfo)
Expand Down

0 comments on commit b6439f8

Please sign in to comment.