Fix spelling error in 'distributeSystemSupplier' local variable name.

This commit is contained in:
John Blum
2021-04-15 13:46:50 -07:00
parent 02e68e62e4
commit ba9c974fcc

View File

@@ -212,11 +212,11 @@ public class ClientCacheFactoryBean extends CacheFactoryBean implements Applicat
return resolveProperties(GemfireUtils::getDistributedSystem);
}
@NonNull Properties resolveProperties(@NonNull Supplier<DistributedSystem> distributeSystemSupplier) {
@NonNull Properties resolveProperties(@NonNull Supplier<DistributedSystem> distributedSystemSupplier) {
Properties gemfireProperties = super.resolveProperties();
DistributedSystem distributedSystem = distributeSystemSupplier.get();
DistributedSystem distributedSystem = distributedSystemSupplier.get();
if (GemfireUtils.isConnected(distributedSystem)) {
Properties distributedSystemProperties = (Properties) distributedSystem.getProperties().clone();