Skip to content

Commit

Permalink
Update constructor calls
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-berlin-wmse committed Jun 13, 2024
1 parent 332d93a commit cd88caa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ static public void parse(
"",
"entity",
true,
new ArrayList<ColumnDetail>(),
1);
1,
new ArrayList<ColumnDetail>());
col.setReconStats(ReconStats.create(project, 0));
col.setReconConfig(cfg);
col.setName("File");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public FileRecordToRows(Iterator<FileRecord> iteratorFileRecords, boolean catego
this.identifierSpace = "https://commons.wikimedia.org/entity/";
this.schemaSpace = "http://www.wikidata.org/prop/direct/";
this.service = "https://commonsreconcile.toolforge.org/en/api";
this.reconConfig = new StandardReconConfig(service, identifierSpace, schemaSpace, null, null, true, Collections.emptyList());
this.reconConfig = new StandardReconConfig(service, identifierSpace, schemaSpace, null, null, true, relatedCategoriesIndex, Collections.emptyList(), relatedCategoriesIndex);

}

Expand Down

0 comments on commit cd88caa

Please sign in to comment.