Skip to content

Commit

Permalink
Reverting the fix for quarkus
Browse files Browse the repository at this point in the history
  • Loading branch information
cuioss committed Dec 12, 2023
1 parent 77dc01c commit 3e2bdd9
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,7 @@ default Optional<ResourceBundle> getBundle(Locale locale) {
return Optional.empty();
}
try {
Optional<ResourceBundle> loadedBundle = Optional.of(
ResourceBundle.getBundle(bundlePath.get(), locale, Thread.currentThread().getContextClassLoader()));
Optional<ResourceBundle> loadedBundle = Optional.of(ResourceBundle.getBundle(bundlePath.get(), locale));
LOGGER.debug("Successfully loaded %s '%s' for '%s'", getClass().getName(), bundlePath.get(), locale);
return loadedBundle;
} catch (MissingResourceException e) {
Expand Down

0 comments on commit 3e2bdd9

Please sign in to comment.