Skip to content

Commit

Permalink
#203: Update CoreConfiguration
Browse files Browse the repository at this point in the history
- Updated CoreConfiguration to be able to get a BeanConverter from it.
  • Loading branch information
marcus-talbot42 committed Apr 11, 2024
1 parent faa446b commit 9fdf2d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/beanmapper/config/CoreConfiguration.java
Original file line number Diff line number Diff line change
Expand Up @@ -468,6 +468,6 @@ public BeanConverterStore getBeanConverterStore() {

@Override
public <S, T> BeanConverter getBeanConverter(Class<S> source, Class<T> target) {
return null;
return this.beanConverterStore.get(source, target);
}
}

0 comments on commit 9fdf2d4

Please sign in to comment.