Skip to content

Commit

Permalink
fix(pool-api): Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
martinfkaeser committed May 4, 2023
1 parent d87576a commit eb0175d
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,12 @@ class PoolClientImpl(
.builder(WebClientAdapter.forClient(webClientProvider()))
.customArgumentResolver(ParameterObjectArgumentResolver())
.build()

}


private val poolClientAddress by lazy { httpServiceProxyFactory.createClient(PoolAddressApi::class.java) }
private val poolClientBpn by lazy { httpServiceProxyFactory.createClient(PoolBpnApi::class.java) }
private val oolClientBusinessPartner by lazy { httpServiceProxyFactory.createClient(PoolBusinessPartnerApi::class.java) }
private val poolClientBusinessPartner by lazy { httpServiceProxyFactory.createClient(PoolBusinessPartnerApi::class.java) }
private val poolClientLegalEntity by lazy { httpServiceProxyFactory.createClient(PoolLegalEntityApi::class.java) }
private val poolClientMetadata by lazy { httpServiceProxyFactory.createClient(PoolMetadataApi::class.java) }
private val poolClientSite by lazy { httpServiceProxyFactory.createClient(PoolSiteApi::class.java) }
Expand All @@ -53,7 +52,7 @@ class PoolClientImpl(

override fun bpns() = poolClientBpn

override fun businessPartners() = oolClientBusinessPartner
override fun businessPartners() = poolClientBusinessPartner

override fun legalEntities() = poolClientLegalEntity

Expand Down

0 comments on commit eb0175d

Please sign in to comment.