Skip to content
This repository has been archived by the owner on Nov 16, 2022. It is now read-only.

Commit

Permalink
wibble
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeplus64 committed May 5, 2016
1 parent a0e3081 commit e07b49b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import java.util.function.Function;

import org.apache.jena.graph.FrontsTriple;
import org.apache.jena.graph.Triple;
import org.apache.jena.graph.impl.GraphBase;
import org.apache.jena.rdf.model.Model;
Expand Down Expand Up @@ -105,7 +106,7 @@ private Resource addCSAttribute(String name, Resource attribute) {
protected ExtendedIterator<Triple> graphBaseFind(Triple trip) {
StmtIterator metaStmts = dataCubeMeta.listStatements();
// TODO: Concatenate with iterator over triples from data itself
return metaStmts.mapWith(stmt -> stmt.asTriple());
return metaStmts.mapWith(FrontsTriple::asTriple);
}

}

0 comments on commit e07b49b

Please sign in to comment.