Github user HansBrende commented on a diff in the pull request:
https://github.com/apache/any23/pull/116#discussion_r210745076
--- 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 --
@jgrzebyta I don't see any reason to disallow protected access to the
`writer` if we allow protected access to the constructor. Subclasses could
bypass the `private` modifier anyway by simply saving a reference to the writer
in the constructor.
---