You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by rv...@apache.org on 2014/11/10 11:51:41 UTC

[42/50] [abbrv] jena git commit: Constants.

Constants.

Project: http://git-wip-us.apache.org/repos/asf/jena/repo
Commit: http://git-wip-us.apache.org/repos/asf/jena/commit/ac8a7d9f
Tree: http://git-wip-us.apache.org/repos/asf/jena/tree/ac8a7d9f
Diff: http://git-wip-us.apache.org/repos/asf/jena/diff/ac8a7d9f

Branch: refs/heads/hadoop-rdf
Commit: ac8a7d9f0bd003fcd99147811436aa4541599ef9
Parents: 25d16cb
Author: Andy Seaborne <an...@apache.org>
Authored: Fri Nov 7 20:45:54 2014 +0000
Committer: Andy Seaborne <an...@apache.org>
Committed: Fri Nov 7 20:45:54 2014 +0000

----------------------------------------------------------------------
 .../java/com/hp/hpl/jena/tdb/setup/TestStoreParamsChoose.java  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/ac8a7d9f/jena-tdb/src/test/java/com/hp/hpl/jena/tdb/setup/TestStoreParamsChoose.java
----------------------------------------------------------------------
diff --git a/jena-tdb/src/test/java/com/hp/hpl/jena/tdb/setup/TestStoreParamsChoose.java b/jena-tdb/src/test/java/com/hp/hpl/jena/tdb/setup/TestStoreParamsChoose.java
index b61cb4c..fb50f33 100644
--- a/jena-tdb/src/test/java/com/hp/hpl/jena/tdb/setup/TestStoreParamsChoose.java
+++ b/jena-tdb/src/test/java/com/hp/hpl/jena/tdb/setup/TestStoreParamsChoose.java
@@ -27,15 +27,15 @@ import com.hp.hpl.jena.tdb.base.file.Location ;
 //TestParamsCreate
 /** This test suite uses on-diskstructures and can be slow */ 
 public class TestStoreParamsChoose extends BaseTest {
-    StoreParams pApp = StoreParamsBuilder.create()
+    static final StoreParams pApp = StoreParamsBuilder.create()
         .blockSize(12)              // Not dynamic
         .nodeMissCacheSize(12)      // Dynamic
         .build();
-    StoreParams pLoc = StoreParamsBuilder.create()
+    static final StoreParams pLoc = StoreParamsBuilder.create()
         .blockSize(0)
         .nodeMissCacheSize(0).build();
     
-    StoreParams pDft = StoreParams.getDftStoreParams() ;
+    static final StoreParams pDft = StoreParams.getDftStoreParams() ;
 
     @Test public void params_choose_new_1() {
         StoreParams p = Build.fixStoreParams(Location.mem(), true, null, null, pDft) ;