Github user jgrzebyta commented on a diff in the pull request:
https://github.com/apache/any23/pull/116#discussion_r210858026
--- 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 --
@HansBrende There is no reason. It is only the coding style.
But if user will override constructor in her/his custom class will call
`super(someWriter)` anyway. In that case constructor is a setter for the writer.
---