Skip to content

Commit

Permalink
#373 use data source id constant
Browse files Browse the repository at this point in the history
  • Loading branch information
luigi-asprino committed Dec 6, 2023
1 parent 6704f94 commit 130db76
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@

public class PptxTriplifier implements Triplifier {

private static final Logger logger = LoggerFactory.getLogger(PptxTriplifier.class);
// private static final Logger logger = LoggerFactory.getLogger(PptxTriplifier.class);

@Override
public void triplify(Properties properties, FacadeXGraphBuilder builder) throws IOException, TriplifierHTTPException {
URL url = Triplifier.getLocation(properties);
if (url == null) return;
String dataSourceId = "";
String dataSourceId = SPARQLAnythingConstants.DATA_SOURCE_ID;

builder.addRoot(dataSourceId);

Expand Down

0 comments on commit 130db76

Please sign in to comment.