--- old/src/share/classes/com/sun/imageio/plugins/wbmp/WBMPMetadata.java 2014-07-08 13:39:06.439000228 -0700 +++ new/src/share/classes/com/sun/imageio/plugins/wbmp/WBMPMetadata.java 2014-07-08 13:39:06.327000232 -0700 @@ -75,9 +75,9 @@ IIOMetadataNode root = new IIOMetadataNode(nativeMetadataFormatName); - addChildNode(root, "WBMPType", new Integer(wbmpType)); - addChildNode(root, "Width", new Integer(width)); - addChildNode(root, "Height", new Integer(height)); + addChildNode(root, "WBMPType", wbmpType); + addChildNode(root, "Width", width); + addChildNode(root, "Height", height); return root; }