Skip to content

Commit

Permalink
Merge pull request #5 from hsu-aut/release
Browse files Browse the repository at this point in the history
Fixed method that was not accessible
  • Loading branch information
aljoshakoecher authored Sep 1, 2020
2 parents bc4c251 + ee84e0d commit 0e23fe7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SparqlResultConverter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export class SparqlResultConverter {
* @param inputArray The SPARQL result (result.bindings)
* @param mappingDefinitions An array of mapping definitions
*/
convertToDefinition(inputArray: SparqlResultLine[], mappingDefinitions: MappingDefinition[]): Record<string, Array<unknown>> {
public convertToDefinition(inputArray: SparqlResultLine[], mappingDefinitions: MappingDefinition[]): Record<string, Array<unknown>> {
const flattenedArray = ArrayUtil.extractValues(inputArray);
return this.convert(flattenedArray, mappingDefinitions);
}
Expand Down

0 comments on commit 0e23fe7

Please sign in to comment.