Change Model writer lang from "N3-PP" to "N3" (#149)
Resolves: https://jira.lyrasis.org/browse/VIVO-1761 Co-authored-by: Andrew Woods <awoods@duraspace.org>
This commit is contained in:
parent
edef9309ab
commit
6d30a0fcd4
2 changed files with 41 additions and 2 deletions
|
@ -57,7 +57,7 @@ public class AdditionsAndRetractions {
|
|||
str += "\nadditions:[";
|
||||
if( getAdditions() != null ) {
|
||||
StringWriter writer = new StringWriter();
|
||||
getAdditions().write(writer, "N3-PP");
|
||||
getAdditions().write(writer, "N3");
|
||||
str += "\n" + writer.toString() + "\n";
|
||||
}
|
||||
str += "],\n";
|
||||
|
@ -65,7 +65,7 @@ public class AdditionsAndRetractions {
|
|||
str += "\nretractions:[";
|
||||
if( getRetractions() != null ) {
|
||||
StringWriter writer = new StringWriter();
|
||||
getRetractions().write(writer, "N3-PP");
|
||||
getRetractions().write(writer, "N3");
|
||||
str += "\n" + writer.toString() + "\n";
|
||||
}
|
||||
str += "],\n";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue