# HG changeset patch # User jdv # Date 1470730517 -19800 # Node ID 6a878eae7459b0ea6f527ae8317e3808f65d1384 # Parent 50d30cb5c70b7ac16161b48eefc87257ca07b5d7 8160456: KSS : resource loading issue in TIFFMetadataFormat.java Reviewed-by: prr, bpb diff -r 50d30cb5c70b -r 6a878eae7459 jdk/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/TIFFMetadataFormat.java --- a/jdk/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/TIFFMetadataFormat.java Tue Aug 09 13:22:58 2016 +0530 +++ b/jdk/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/TIFFMetadataFormat.java Tue Aug 09 13:45:17 2016 +0530 @@ -49,7 +49,8 @@ } try { ResourceBundle bundle = - ResourceBundle.getBundle(resourceBaseName, locale); + ResourceBundle.getBundle(resourceBaseName, locale, + this.getClass().getModule()); return bundle.getString(key); } catch (MissingResourceException e) { return null;