Skip to content

Commit b85a7a9

Browse files
author
James Leigh
committed
Issue #850: Use primitive bools
Signed-off-by: James Leigh <james.leigh@ontotext.com>
1 parent c125424 commit b85a7a9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

core/rio/ntriples/src/main/java/org/eclipse/rdf4j/rio/ntriples/NTriplesWriter.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ public class NTriplesWriter extends AbstractRDFWriter implements RDFWriter {
4646

4747
protected boolean writingStarted;
4848

49-
private Boolean xsdStringToPlainLiteral;
49+
private boolean xsdStringToPlainLiteral = true;
5050

51-
private Boolean escapeUnicode;
51+
private boolean escapeUnicode;
5252

5353
/*--------------*
5454
* Constructors *
@@ -191,11 +191,11 @@ else if (value instanceof Literal) {
191191
}
192192
}
193193

194-
private void writeIRI(IRI Iri)
194+
private void writeIRI(IRI iri)
195195
throws IOException
196196
{
197197
writer.append("<");
198-
writeString(Iri.stringValue());
198+
writeString(iri.stringValue());
199199
writer.append(">");
200200
}
201201

0 commit comments

Comments
 (0)