Skip to content

Commit

Permalink
Fix beans naming (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
echerniak authored Sep 13, 2023
1 parent 62c40a4 commit c158f0a
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -10,22 +10,22 @@
public class StorageConfig {

@Bean
public Map<String, Double> paymentlimitsBoundaryAggregatesMap() {
public Map<String, Double> paymentLimitsBoundaryAggregatesMap() {
return new ConcurrentHashMap<>();
}

@Bean
public Map<String, Double> paymentlimitsAmountAggregatesMap() {
public Map<String, Double> paymentLimitsAmountAggregatesMap() {
return new ConcurrentHashMap<>();
}

@Bean
public Map<String, Double> payoutlimitsBoundaryAggregatesMap() {
public Map<String, Double> payoutLimitsBoundaryAggregatesMap() {
return new ConcurrentHashMap<>();
}

@Bean
public Map<String, Double> payoutlimitsAmountAggregatesMap() {
public Map<String, Double> payoutLimitsAmountAggregatesMap() {
return new ConcurrentHashMap<>();
}
}

0 comments on commit c158f0a

Please sign in to comment.