Skip to content

Commit

Permalink
Remove unused parameter. See #202
Browse files Browse the repository at this point in the history
  • Loading branch information
enridaga committed Mar 23, 2022
1 parent 30c7f3d commit db82b52
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public class JSONTriplifier implements Triplifier, Slicer {
// return Triplifier.getRootArgument(properties);
// }

private void transform(URL url, Properties properties, FacadeXGraphBuilder builder)
private void transform(Properties properties, FacadeXGraphBuilder builder)
throws IOException, TriplifierHTTPException {

final InputStream us = Triplifier.getInputStream(properties);
Expand Down Expand Up @@ -295,9 +295,8 @@ private void transformMap(Map o, String dataSourceId, String containerId,
@Override
public void triplify(Properties properties, FacadeXGraphBuilder builder)
throws IOException, TriplifierHTTPException {
URL url = Triplifier.getLocation(properties);
// TODO Add support for JsonPath
transform(url, properties, builder);
transform(properties, builder);
}

@Override
Expand Down

0 comments on commit db82b52

Please # to comment.