Github user jgrzebyta commented on a diff in the pull request:
https://github.com/apache/any23/pull/116#discussion_r210723497
--- Diff:
core/src/main/java/org/apache/any23/writer/RDFWriterTripleHandler.java ---
@@ -35,7 +35,7 @@
*/
public abstract class RDFWriterTripleHandler implements FormatWriter,
TripleHandler {
- private final RDFWriter writer;
+ protected final RDFWriter writer;
--- End diff --
I am a bit confused why you just did not add setter instead having the
filed protected. Or expolit the protected constructor you did below.
---