Skip to content

Commit

Permalink
allow using simple parser in generate hdt disk
Browse files Browse the repository at this point in the history
  • Loading branch information
ate47 committed May 17, 2022
1 parent 6ecf2b9 commit 5ee6368
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public HDT doGenerateHDTDisk(InputStream fileStream, String baseURI, RDFNotation
// uncompress the stream if required
fileStream = IOUtil.asUncompressed(fileStream, compressionType);
// create a parser for this rdf stream
RDFParserCallback parser = RDFParserFactory.getParserCallback(rdfNotation);
RDFParserCallback parser = RDFParserFactory.getParserCallback(rdfNotation, useSimple(hdtFormat));
// read the stream as triples
Iterator<TripleString> iterator = RDFParserFactory.readAsIterator(parser, fileStream, baseURI, true, rdfNotation);

Expand Down

0 comments on commit 5ee6368

Please sign in to comment.