You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2017/06/29 10:45:40 UTC

[04/11] jena git commit: Make private as only used in this class.

Make private as only used in this class.

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

Branch: refs/heads/master
Commit: 9dc27c4ef2865c840555892f9ffa6ae714e6bfc6
Parents: 053c06a
Author: Andy Seaborne <an...@apache.org>
Authored: Tue Jun 27 22:42:13 2017 +0100
Committer: Andy Seaborne <an...@apache.org>
Committed: Tue Jun 27 22:42:13 2017 +0100

----------------------------------------------------------------------
 .../main/java/org/apache/jena/tdb/base/block/BlockMgrFactory.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/9dc27c4e/jena-tdb/src/main/java/org/apache/jena/tdb/base/block/BlockMgrFactory.java
----------------------------------------------------------------------
diff --git a/jena-tdb/src/main/java/org/apache/jena/tdb/base/block/BlockMgrFactory.java b/jena-tdb/src/main/java/org/apache/jena/tdb/base/block/BlockMgrFactory.java
index 2a84d78..16e1454 100644
--- a/jena-tdb/src/main/java/org/apache/jena/tdb/base/block/BlockMgrFactory.java
+++ b/jena-tdb/src/main/java/org/apache/jena/tdb/base/block/BlockMgrFactory.java
@@ -54,8 +54,7 @@ public class BlockMgrFactory {
         return create(fileSet, ext, null, blockSize, readBlockCacheSize, writeBlockCacheSize) ;
     }
 
-    // XXX Deprecate?
-    public static BlockMgr create(FileSet fileSet, String ext, FileMode fileMode, int blockSize, int readBlockCacheSize, int writeBlockCacheSize) {
+    private static BlockMgr create(FileSet fileSet, String ext, FileMode fileMode, int blockSize, int readBlockCacheSize, int writeBlockCacheSize) {
         if ( fileSet.isMem() )
             return createMem(fileSet.filename(ext), blockSize) ;
         else