Github user HansBrende commented on a diff in the pull request:
https://github.com/apache/any23/pull/62#discussion_r164340771
--- Diff: core/src/main/java/org/apache/any23/rdf/RDFUtils.java ---
@@ -528,10 +528,10 @@ public static boolean isAbsoluteIRI(String href) {
new java.net.URI(href.trim());
--- End diff --
On an unrelated note, why are we testing this on `href.trim()` instead of
just `href`?
`RDFUtils.iri(href)` does *not* call `href.trim()`!---
