Repository: incubator-blur Updated Branches: refs/heads/master f02bd95a0 -> 74c6928d2
Making private field protected. Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/20d1ce57 Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/20d1ce57 Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/20d1ce57 Branch: refs/heads/master Commit: 20d1ce572e5fd00fd00cf32c1fcf4bf89379fc44 Parents: f02bd95 Author: Aaron McCurry <[email protected]> Authored: Thu Mar 19 08:24:30 2015 -0400 Committer: Aaron McCurry <[email protected]> Committed: Thu Mar 19 08:24:30 2015 -0400 ---------------------------------------------------------------------- .../java/org/apache/blur/thrift/BlurClusterTestBase.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/20d1ce57/blur-core/src/test/java/org/apache/blur/thrift/BlurClusterTestBase.java ---------------------------------------------------------------------- diff --git a/blur-core/src/test/java/org/apache/blur/thrift/BlurClusterTestBase.java b/blur-core/src/test/java/org/apache/blur/thrift/BlurClusterTestBase.java index 335ae21..f0e4a12 100644 --- a/blur-core/src/test/java/org/apache/blur/thrift/BlurClusterTestBase.java +++ b/blur-core/src/test/java/org/apache/blur/thrift/BlurClusterTestBase.java @@ -96,12 +96,12 @@ import org.junit.Test; public abstract class BlurClusterTestBase { - private static final File TMPDIR = new File(System.getProperty("blur.tmp.dir", "./target/tmp_BlurClusterTest")); - private static MiniCluster miniCluster; - private static boolean externalProcesses = false; + protected static final File TMPDIR = new File(System.getProperty("blur.tmp.dir", "./target/tmp_BlurClusterTest")); + protected static MiniCluster miniCluster; + protected static boolean externalProcesses = false; - private int numberOfDocs = 1000; - private String controllerConnectionStr; + protected int numberOfDocs = 1000; + protected String controllerConnectionStr; @BeforeClass public static void startCluster() throws IOException {
