made all FunctionTemplate constructors public

This commit is contained in:
David Turanski
2013-01-22 08:30:36 -05:00
parent 1e7ccc44b1
commit 7b52197f0f
3 changed files with 5 additions and 5 deletions

View File

@@ -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;
}

View File

@@ -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;
}

View File

@@ -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 <em>candidate</em> SmartContextLoaders (i.e.,
* {@link GenericXmlContextLoader} and {@link AnnotationConfigContextLoader}) to
* determine which context loader is appropriate for a given test class<EFBFBD>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