You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@any23.apache.org by ha...@apache.org on 2018/08/20 13:10:55 UTC

any23 git commit: ANY23-388 made field writer and default constructor protected instead of package private

Repository: any23
Updated Branches:
  refs/heads/master bf5fea3aa -> e5562c5e4


ANY23-388 made field writer and default constructor protected instead of package private


Project: http://git-wip-us.apache.org/repos/asf/any23/repo
Commit: http://git-wip-us.apache.org/repos/asf/any23/commit/e5562c5e
Tree: http://git-wip-us.apache.org/repos/asf/any23/tree/e5562c5e
Diff: http://git-wip-us.apache.org/repos/asf/any23/diff/e5562c5e

Branch: refs/heads/master
Commit: e5562c5e49e6463c22dc598efcc16870b4c320cd
Parents: bf5fea3
Author: larsgsvensson <la...@gmail.com>
Authored: Mon Aug 20 10:29:20 2018 +0200
Committer: larsgsvensson <la...@gmail.com>
Committed: Mon Aug 20 10:29:20 2018 +0200

----------------------------------------------------------------------
 .../java/org/apache/any23/writer/RDFWriterTripleHandler.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/any23/blob/e5562c5e/core/src/main/java/org/apache/any23/writer/RDFWriterTripleHandler.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/any23/writer/RDFWriterTripleHandler.java b/core/src/main/java/org/apache/any23/writer/RDFWriterTripleHandler.java
index 2df55e0..aaf4105 100644
--- a/core/src/main/java/org/apache/any23/writer/RDFWriterTripleHandler.java
+++ b/core/src/main/java/org/apache/any23/writer/RDFWriterTripleHandler.java
@@ -35,7 +35,7 @@ import org.eclipse.rdf4j.rio.RDFWriter;
  */
 public abstract class RDFWriterTripleHandler implements FormatWriter, TripleHandler {
 
-    private final RDFWriter writer;
+    protected final RDFWriter writer;
 
     private boolean closed = false;
 
@@ -44,7 +44,7 @@ public abstract class RDFWriterTripleHandler implements FormatWriter, TripleHand
      */
     private boolean annotated = false;
 
-    RDFWriterTripleHandler(RDFWriter destination) {
+    protected RDFWriterTripleHandler(RDFWriter destination) {
         writer = destination;
         try {
             writer.startRDF();