mirror of
https://github.com/valitydev/exporter-limits.git
synced 2024-11-06 00:25:22 +00:00
Fix beans naming (#8)
This commit is contained in:
parent
62c40a4edf
commit
c158f0a230
@ -10,22 +10,22 @@ import java.util.concurrent.ConcurrentHashMap;
|
||||
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<>();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user