--- old/src/share/classes/javax/imageio/stream/ImageInputStream.java 2014-01-09 11:49:32.000000000 -0800 +++ new/src/share/classes/javax/imageio/stream/ImageInputStream.java 2014-01-09 11:49:32.000000000 -0800 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -446,7 +446,7 @@ * UTFDataFormatException is thrown. Otherwise, the * group is converted to the character: * - *


+     * 

      * (char)(((a& 0x1F) << 6) | (b & 0x3F))
      * 
* @@ -460,7 +460,7 @@ * UTFDataFormatException is thrown. Otherwise, the * group is converted to the character: * - *


+     * 

      * (char)(((a & 0x0F) << 12) | ((b & 0x3F) << 6) | (c & 0x3F))
      * 
*