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 2014/11/20 20:08:13 UTC

[2/6] jena git commit: Remove warning about a situation that can now happen.

Remove warning about a situation that can now happen.

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

Branch: refs/heads/master
Commit: 02015dc379d493628a612b6ca382c74481561c7c
Parents: 890ff39
Author: Andy Seaborne <an...@apache.org>
Authored: Tue Nov 11 15:37:42 2014 +0000
Committer: Andy Seaborne <an...@apache.org>
Committed: Tue Nov 11 15:37:42 2014 +0000

----------------------------------------------------------------------
 jena-tdb/src/main/java/com/hp/hpl/jena/tdb/sys/FileRef.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/02015dc3/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/sys/FileRef.java
----------------------------------------------------------------------
diff --git a/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/sys/FileRef.java b/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/sys/FileRef.java
index b8569b4..bbfc507 100644
--- a/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/sys/FileRef.java
+++ b/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/sys/FileRef.java
@@ -120,9 +120,9 @@ public class FileRef
     {
         Tuple<String> x = FileOps.splitDirFile(filename) ;
         String key = x.get(1) ;
-        if ( ! name2id.containsKey(key) )
-        {
-            Log.warn(FileRef.class, "File name not registered: "+filename) ;
+        if ( ! name2id.containsKey(key) ) {
+            //Log.warn(FileRef.class, "File name not registered: "+filename) ;
+            Log.debug(FileRef.class, "File name not registered: "+filename) ;
             file(key) ;
         }