Skip to content

Commit

Permalink
Fix external-template row number
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesaoverton committed Apr 17, 2024
1 parent 2c64fcb commit dc04a3c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ public static OWLOntology template(
for (Map.Entry<String, List<List<String>>> t : tables.entrySet()) {
Template template = new Template(t.getKey(), t.getValue(), intermediate, ioHelper, checker);
// sufficient to check if ext-template option has a not null value
if (options.get("ext-template") != null) {
if (options.get("external-template") != null) {
template.setRowNum(1);
}
// Update the checker with new labels
Expand Down

0 comments on commit dc04a3c

Please sign in to comment.