diff -r 8e5afc67dca8 -r c9185e010e03 jdk/src/share/classes/javax/imageio/stream/ImageInputStream.java --- a/jdk/src/share/classes/javax/imageio/stream/ImageInputStream.java Thu Dec 05 15:49:53 2013 -0500 +++ b/jdk/src/share/classes/javax/imageio/stream/ImageInputStream.java Fri Jan 10 09:24:47 2014 -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))
      * 
*