From commits-return-19181-archive-asf-public=cust-asf.ponee.io@jena.apache.org Tue Jan 30 10:20:03 2018 Return-Path: X-Original-To: archive-asf-public@eu.ponee.io Delivered-To: archive-asf-public@eu.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by mx-eu-01.ponee.io (Postfix) with ESMTP id EA77B18061A for ; Tue, 30 Jan 2018 10:20:03 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id D98BC160C53; Tue, 30 Jan 2018 09:20:03 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 2F2E9160C42 for ; Tue, 30 Jan 2018 10:20:03 +0100 (CET) Received: (qmail 35270 invoked by uid 500); 30 Jan 2018 09:20:02 -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 35226 invoked by uid 99); 30 Jan 2018 09:20:02 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 30 Jan 2018 09:20:02 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 459A7E04AA; Tue, 30 Jan 2018 09:20:02 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: andy@apache.org To: commits@jena.apache.org Date: Tue, 30 Jan 2018 09:20:02 -0000 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: [1/2] jena git commit: No instances for TDB and TDB2 classes Repository: jena Updated Branches: refs/heads/master 3ac175b75 -> e2194a631 No instances for TDB and TDB2 classes Project: http://git-wip-us.apache.org/repos/asf/jena/repo Commit: http://git-wip-us.apache.org/repos/asf/jena/commit/17acb26c Tree: http://git-wip-us.apache.org/repos/asf/jena/tree/17acb26c Diff: http://git-wip-us.apache.org/repos/asf/jena/diff/17acb26c Branch: refs/heads/master Commit: 17acb26cbe2cdbb1c01bb469284fb0ff121f4278 Parents: 3ac175b Author: Andy Seaborne Authored: Mon Jan 29 21:38:54 2018 +0000 Committer: Andy Seaborne Committed: Mon Jan 29 21:39:41 2018 +0000 ---------------------------------------------------------------------- jena-db/jena-tdb2/src/main/java/org/apache/jena/tdb2/TDB2.java | 3 +++ jena-tdb/src/main/java/org/apache/jena/tdb/TDB.java | 3 +++ 2 files changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jena/blob/17acb26c/jena-db/jena-tdb2/src/main/java/org/apache/jena/tdb2/TDB2.java ---------------------------------------------------------------------- diff --git a/jena-db/jena-tdb2/src/main/java/org/apache/jena/tdb2/TDB2.java b/jena-db/jena-tdb2/src/main/java/org/apache/jena/tdb2/TDB2.java index 16230dd..3ee049f 100644 --- a/jena-db/jena-tdb2/src/main/java/org/apache/jena/tdb2/TDB2.java +++ b/jena-db/jena-tdb2/src/main/java/org/apache/jena/tdb2/TDB2.java @@ -41,6 +41,9 @@ import org.slf4j.Logger ; import org.slf4j.LoggerFactory ; public class TDB2 { + + private TDB2() {} + /** IRI for TDB */ public static final String tdbIRI = "http://jena.apache.org/#tdb" ; http://git-wip-us.apache.org/repos/asf/jena/blob/17acb26c/jena-tdb/src/main/java/org/apache/jena/tdb/TDB.java ---------------------------------------------------------------------- diff --git a/jena-tdb/src/main/java/org/apache/jena/tdb/TDB.java b/jena-tdb/src/main/java/org/apache/jena/tdb/TDB.java index d76e9cb..ddb5bea 100644 --- a/jena-tdb/src/main/java/org/apache/jena/tdb/TDB.java +++ b/jena-tdb/src/main/java/org/apache/jena/tdb/TDB.java @@ -54,6 +54,9 @@ import org.slf4j.Logger ; import org.slf4j.LoggerFactory ; public class TDB { + + private TDB() {} + // Initialization statics must be first in the class to avoid // problems with recursive initialization. Specifcally, // initLock being null because elsewhere started the initialization