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:
Andrew Woods 2020-04-07 12:30:56 -06:00 committed by GitHub
parent edef9309ab
commit 6d30a0fcd4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 41 additions and 2 deletions

View file

@ -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";