Fix spelling error in 'distributeSystemSupplier' local variable name.
This commit is contained in:
@@ -212,11 +212,11 @@ public class ClientCacheFactoryBean extends CacheFactoryBean implements Applicat
|
|||||||
return resolveProperties(GemfireUtils::getDistributedSystem);
|
return resolveProperties(GemfireUtils::getDistributedSystem);
|
||||||
}
|
}
|
||||||
|
|
||||||
@NonNull Properties resolveProperties(@NonNull Supplier<DistributedSystem> distributeSystemSupplier) {
|
@NonNull Properties resolveProperties(@NonNull Supplier<DistributedSystem> distributedSystemSupplier) {
|
||||||
|
|
||||||
Properties gemfireProperties = super.resolveProperties();
|
Properties gemfireProperties = super.resolveProperties();
|
||||||
|
|
||||||
DistributedSystem distributedSystem = distributeSystemSupplier.get();
|
DistributedSystem distributedSystem = distributedSystemSupplier.get();
|
||||||
|
|
||||||
if (GemfireUtils.isConnected(distributedSystem)) {
|
if (GemfireUtils.isConnected(distributedSystem)) {
|
||||||
Properties distributedSystemProperties = (Properties) distributedSystem.getProperties().clone();
|
Properties distributedSystemProperties = (Properties) distributedSystem.getProperties().clone();
|
||||||
|
|||||||
Reference in New Issue
Block a user