Skip to content

Commit

Permalink
Make ConfigurationProperties public
Browse files Browse the repository at this point in the history
This class is part of the public API (e.g. through the SerializerContext
 interface), so it should be accessible.
  • Loading branch information
Exlll committed Nov 30, 2023
1 parent 9143762 commit ef7c611
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/**
* A collection of values used to configure the serialization of configurations.
*/
class ConfigurationProperties {
public class ConfigurationProperties {
private final Map<Class<?>, Serializer<?, ?>> serializersByType;
private final Map<Class<?>, Function<? super SerializerContext, ? extends Serializer<?, ?>>>
serializerFactoriesByType;
Expand Down

0 comments on commit ef7c611

Please sign in to comment.