You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by st...@apache.org on 2018/02/20 10:35:35 UTC

[4/9] commons-rdf git commit: ParserConfig is public interface

ParserConfig is public interface


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

Branch: refs/heads/fluent-parser
Commit: f845ecb82385cc2c33cfd372b075efdda78247bc
Parents: 898a70c
Author: Stian Soiland-Reyes <st...@apache.org>
Authored: Tue Feb 20 09:35:20 2018 +0000
Committer: Stian Soiland-Reyes <st...@apache.org>
Committed: Tue Feb 20 09:35:20 2018 +0000

----------------------------------------------------------------------
 .../src/main/java/org/apache/commons/rdf/api/io/ParserConfig.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-rdf/blob/f845ecb8/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/io/ParserConfig.java
----------------------------------------------------------------------
diff --git a/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/io/ParserConfig.java b/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/io/ParserConfig.java
index bb7f7c5..ee7d65f 100644
--- a/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/io/ParserConfig.java
+++ b/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/io/ParserConfig.java
@@ -26,7 +26,7 @@ import org.apache.commons.rdf.api.RDFSyntax;
 import org.apache.commons.rdf.api.io.NullParserConfig.SnapshotParserConfig;
 
 @SuppressWarnings("rawtypes")
-interface ParserConfig {
+public interface ParserConfig {
 	Optional<ParserSource> source();
 	Optional<IRI> base();
 	Optional<ParserTarget> target();