Skip to content

Commit

Permalink
osm config loader fix
Browse files Browse the repository at this point in the history
it was taking PublicTransitMappingConfigGroup instead of the
OsmConverterConfigGroup
  • Loading branch information
balacmi authored and polettif committed Jan 4, 2021
1 parent 9cdbc8e commit 954747c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public static OsmConverterConfigGroup createDefaultConfig() {
}

public static OsmConverterConfigGroup loadConfig(String configFile) {
Config configAll = ConfigUtils.loadConfig(configFile, new PublicTransitMappingConfigGroup());
Config configAll = ConfigUtils.loadConfig(configFile, new OsmConverterConfigGroup());
return ConfigUtils.addOrGetModule(configAll, OsmConverterConfigGroup.GROUP_NAME, OsmConverterConfigGroup.class);
}

Expand Down

0 comments on commit 954747c

Please sign in to comment.