Skip to content

Commit

Permalink
rename variable
Browse files Browse the repository at this point in the history
  • Loading branch information
agrgr committed Dec 3, 2024
1 parent 8f91151 commit a9483ae
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,11 @@ public AerospikeTypeAliasAccessor aerospikeTypeAliasAccessor(AerospikeDataSettin
@Bean
public AerospikeCustomConversions customConversions(@Autowired(required = false)
AerospikeCustomConverters converters) {
List<Object> allCustomConverters = new ArrayList<>(customConverters());
List<Object> aggregatedCustomConverters = new ArrayList<>(customConverters());
if (converters != null) {
allCustomConverters.addAll(converters.getCustomConverters());
aggregatedCustomConverters.addAll(converters.getCustomConverters());
}
return new AerospikeCustomConversions(allCustomConverters);
return new AerospikeCustomConversions(aggregatedCustomConverters);
}

protected List<Object> customConverters() {
Expand Down

0 comments on commit a9483ae

Please sign in to comment.