Return-Path: X-Original-To: apmail-jena-commits-archive@www.apache.org Delivered-To: apmail-jena-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id BEB1117736 for ; Mon, 10 Nov 2014 10:53:07 +0000 (UTC) Received: (qmail 41239 invoked by uid 500); 10 Nov 2014 10:53:07 -0000 Delivered-To: apmail-jena-commits-archive@jena.apache.org Received: (qmail 41168 invoked by uid 500); 10 Nov 2014 10:53:07 -0000 Mailing-List: contact commits-help@jena.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@jena.apache.org Delivered-To: mailing list commits@jena.apache.org Received: (qmail 40734 invoked by uid 99); 10 Nov 2014 10:53:07 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 10 Nov 2014 10:53:07 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 251148C019A; Mon, 10 Nov 2014 10:53:07 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: rvesse@apache.org To: commits@jena.apache.org Date: Mon, 10 Nov 2014 10:53:24 -0000 Message-Id: In-Reply-To: <2ec01d51adfb438c93409629c43c0aec@git.apache.org> References: <2ec01d51adfb438c93409629c43c0aec@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [19/50] [abbrv] 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/eliminate-assignments Commit: aae3f2389716d8cace12a9672b022879f42fd585 Parents: 463de5f Author: Andy Seaborne Authored: Wed Nov 5 13:48:12 2014 +0000 Committer: Andy Seaborne 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 ; }