Github user ajs6f commented on a diff in the pull request:
https://github.com/apache/jena/pull/416#discussion_r186517509
--- Diff:
jena-arq/src/main/java/org/apache/jena/riot/system/ParserProfile.java ---
@@ -49,6 +49,12 @@
/** Create a triple */
public Triple createTriple(Node subject, Node predicate, Node object,
long line, long col);
+ /** Check a triple */
--- End diff --
Might be nice to include a Javadoc note declaring what to do for bad
tuples. Presumably `throw` something, but is there a specific type to throw
that would be best?
---