Skip to content

Commit

Permalink
fixed init call to cover new 'locale' parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Mahnke committed May 24, 2024
1 parent e6c24ae commit 4e541da
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ public Choice getChoice(String authKey, String locale) {

@Override
public boolean isHierarchical() {
init();
init(null);
return true;
}

Expand Down Expand Up @@ -277,7 +277,7 @@ public Choice getParentChoice(String authorityName, String childId, String local

@Override
public Integer getPreloadLevel() {
init();
init(null);
return preloadLevel;
}

Expand Down

0 comments on commit 4e541da

Please sign in to comment.