8160456: KSS : resource loading issue in TIFFMetadataFormat.java

Reviewed-by: prr, bpb
This commit is contained in:
Jayathirth D V 2016-08-09 13:45:17 +05:30
parent 74f5aaca1c
commit 0127b8e8b5

View File

@ -49,7 +49,8 @@ public abstract class TIFFMetadataFormat implements IIOMetadataFormat {
}
try {
ResourceBundle bundle =
ResourceBundle.getBundle(resourceBaseName, locale);
ResourceBundle.getBundle(resourceBaseName, locale,
this.getClass().getModule());
return bundle.getString(key);
} catch (MissingResourceException e) {
return null;