Return-Path: X-Original-To: apmail-commonsrdf-commits-archive@minotaur.apache.org Delivered-To: apmail-commonsrdf-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 914E017554 for ; Sat, 18 Apr 2015 17:04:23 +0000 (UTC) Received: (qmail 61496 invoked by uid 500); 18 Apr 2015 17:04:23 -0000 Delivered-To: apmail-commonsrdf-commits-archive@commonsrdf.apache.org Received: (qmail 61468 invoked by uid 500); 18 Apr 2015 17:04:23 -0000 Mailing-List: contact commits-help@commonsrdf.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commonsrdf.incubator.apache.org Delivered-To: mailing list commits@commonsrdf.incubator.apache.org Received: (qmail 61459 invoked by uid 99); 18 Apr 2015 17:04:23 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 18 Apr 2015 17:04:23 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [54.191.145.13] (HELO mx1-us-west.apache.org) (54.191.145.13) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 18 Apr 2015 17:04:17 +0000 Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-us-west.apache.org (ASF Mail Server at mx1-us-west.apache.org) with SMTP id DD5BB2637D for ; Sat, 18 Apr 2015 17:03:57 +0000 (UTC) Received: (qmail 59503 invoked by uid 99); 18 Apr 2015 17:03:57 -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; Sat, 18 Apr 2015 17:03:57 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 8E0CBE07A7; Sat, 18 Apr 2015 17:03:57 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: andy@apache.org To: commits@commonsrdf.incubator.apache.org Date: Sat, 18 Apr 2015 17:03:59 -0000 Message-Id: <89f7a1bacca8431bbf4eafd2869e3205@git.apache.org> In-Reply-To: <3296adc0b9a149ccb87c581ec114302e@git.apache.org> References: <3296adc0b9a149ccb87c581ec114302e@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [3/3] incubator-commonsrdf git commit: Correct javadoc link X-Virus-Checked: Checked by ClamAV on apache.org Correct javadoc link Project: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/commit/b08ef1ad Tree: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/tree/b08ef1ad Diff: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/diff/b08ef1ad Branch: refs/heads/master Commit: b08ef1ad949769795a900e0e4afd39173ef6ba2c Parents: c8b67fe Author: Andy Seaborne Authored: Sat Apr 18 18:03:45 2015 +0100 Committer: Andy Seaborne Committed: Sat Apr 18 18:03:45 2015 +0100 ---------------------------------------------------------------------- .../rdf/simple/SimpleNoRelativeIRIRDFTermFactoryTest.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/b08ef1ad/simple/src/test/java/org/apache/commons/rdf/simple/SimpleNoRelativeIRIRDFTermFactoryTest.java ---------------------------------------------------------------------- diff --git a/simple/src/test/java/org/apache/commons/rdf/simple/SimpleNoRelativeIRIRDFTermFactoryTest.java b/simple/src/test/java/org/apache/commons/rdf/simple/SimpleNoRelativeIRIRDFTermFactoryTest.java index d056890..8e57d27 100644 --- a/simple/src/test/java/org/apache/commons/rdf/simple/SimpleNoRelativeIRIRDFTermFactoryTest.java +++ b/simple/src/test/java/org/apache/commons/rdf/simple/SimpleNoRelativeIRIRDFTermFactoryTest.java @@ -26,8 +26,8 @@ import java.net.URI; /** * Test simple IRI without relative IRI support. *

- * Ensures that {@link AbstractRDFTermFactoryTest#createIRIRelative()} is - * correctly skipped (without causing an error. + * Ensures that {@link AbstractRDFTermFactoryTest#testCreateIRIRelative()} is + * correctly skipped (without causing an error). */ public class SimpleNoRelativeIRIRDFTermFactoryTest extends AbstractRDFTermFactoryTest { @@ -38,7 +38,6 @@ public class SimpleNoRelativeIRIRDFTermFactoryTest extends public IRI createIRI(String iri) { if (!URI.create(iri).isAbsolute()) { throw new IllegalArgumentException("IRIs must be absolute"); - // ..in this subclass for testing purposes only :) } return super.createIRI(iri); }