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/08 17:34:47 UTC

[04/13] jena git commit: Fix mistaken recursion.

Fix mistaken recursion.

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

Branch: refs/heads/master
Commit: aae3f2389716d8cace12a9672b022879f42fd585
Parents: 463de5f
Author: Andy Seaborne <an...@apache.org>
Authored: Wed Nov 5 13:48:12 2014 +0000
Committer: Andy Seaborne <an...@apache.org>
Committed: Wed Nov 5 15:06:44 2014 +0000

----------------------------------------------------------------------
 jena-tdb/src/main/java/com/hp/hpl/jena/tdb/base/file/Location.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/aae3f238/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/base/file/Location.java
----------------------------------------------------------------------
diff --git a/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/base/file/Location.java b/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/base/file/Location.java
index 0d18d51..26152b7 100644
--- a/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/base/file/Location.java
+++ b/jena-tdb/src/main/java/com/hp/hpl/jena/tdb/base/file/Location.java
@@ -60,7 +60,7 @@ public class Location {
 
     /** Return a location for a directory on disk */
     static public Location create(String directoryName) {
-        Location loc = Location.create(directoryName) ;
+        Location loc = new Location(directoryName) ;
         return loc ;
     }