diff --git a/src/main/java/org/springframework/data/gemfire/function/execution/GemfireOnServerFunctionTemplate.java b/src/main/java/org/springframework/data/gemfire/function/execution/GemfireOnServerFunctionTemplate.java index 2a339483..16e459d2 100644 --- a/src/main/java/org/springframework/data/gemfire/function/execution/GemfireOnServerFunctionTemplate.java +++ b/src/main/java/org/springframework/data/gemfire/function/execution/GemfireOnServerFunctionTemplate.java @@ -26,12 +26,12 @@ public class GemfireOnServerFunctionTemplate extends AbstractFunctionTemplate { private final Pool pool; - GemfireOnServerFunctionTemplate (RegionService cache) { + public GemfireOnServerFunctionTemplate (RegionService cache) { this.cache = cache; this.pool = null; } - GemfireOnServerFunctionTemplate (Pool pool) { + public GemfireOnServerFunctionTemplate (Pool pool) { this.pool = pool; this.cache = null; } diff --git a/src/main/java/org/springframework/data/gemfire/function/execution/GemfireOnServersFunctionTemplate.java b/src/main/java/org/springframework/data/gemfire/function/execution/GemfireOnServersFunctionTemplate.java index 95ea8eac..d5c7942b 100644 --- a/src/main/java/org/springframework/data/gemfire/function/execution/GemfireOnServersFunctionTemplate.java +++ b/src/main/java/org/springframework/data/gemfire/function/execution/GemfireOnServersFunctionTemplate.java @@ -26,12 +26,12 @@ public class GemfireOnServersFunctionTemplate extends AbstractFunctionTemplate private final Pool pool; - GemfireOnServersFunctionTemplate (RegionService cache) { + public GemfireOnServersFunctionTemplate (RegionService cache) { this.cache = cache; this.pool = null; } - GemfireOnServersFunctionTemplate (Pool pool) { + public GemfireOnServersFunctionTemplate (Pool pool) { this.pool = pool; this.cache = null; } diff --git a/src/main/java/org/springframework/data/gemfire/test/GemfireSmartContextLoader.java b/src/main/java/org/springframework/data/gemfire/test/GemfireSmartContextLoader.java index a8b23212..969c695c 100644 --- a/src/main/java/org/springframework/data/gemfire/test/GemfireSmartContextLoader.java +++ b/src/main/java/org/springframework/data/gemfire/test/GemfireSmartContextLoader.java @@ -52,7 +52,7 @@ import org.springframework.util.ObjectUtils; * {@code DelegatingSmartContextLoader} is an implementation of the {@link SmartContextLoader} * SPI that delegates to a set of candidate SmartContextLoaders (i.e., * {@link GenericXmlContextLoader} and {@link AnnotationConfigContextLoader}) to - * determine which context loader is appropriate for a given test classÕs configuration. + * determine which context loader is appropriate for a given test class's configuration. * Each candidate is given a chance to {@link #processContextConfiguration process} the * {@link ContextConfigurationAttributes} for each class in the test class hierarchy that * is annotated with {@link ContextConfiguration @ContextConfiguration}, and the candidate