Skip to content

Commit

Permalink
Change method visibility to private
Browse files Browse the repository at this point in the history
  • Loading branch information
Almighty-Satan committed Aug 11, 2023
1 parent 443d9af commit a3b94c2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ private void setField(@NotNull Object value) {
}

@SuppressWarnings("unchecked")
public <T> @NotNull Type<T> createCustomObjectType(@NotNull Class<T> typeClass, @NotNull Set<Class<?>> parentCustomClasses) throws InvalidAnnotationConfigException {
private <T> @NotNull Type<T> createCustomObjectType(@NotNull Class<T> typeClass, @NotNull Set<Class<?>> parentCustomClasses) throws InvalidAnnotationConfigException {
Objects.requireNonNull(typeClass);

Type<T> cachedType = (Type<T>) this.typeCache.get(typeClass);
Expand Down

0 comments on commit a3b94c2

Please sign in to comment.