// See also SinkTripleOutput.
// This is only here because it needs to cover the "Writer" path from JenaWriterBase < RDFWriter
@Override
protected void write(Graph graph, Writer out, String base)
{
NodeToLabel labels = SyntaxLabels.createNodeToLabel() ;
Iterator<Triple> iter = graph.find(Node.ANY, Node.ANY, Node.ANY) ;
for ( ; iter.hasNext() ; )
{
Triple triple = iter.next() ;
OutputLangUtils.output(out, triple, null, labels) ;