--- old/src/share/classes/javax/imageio/stream/ImageOutputStream.java 2014-01-09 11:49:33.000000000 -0800 +++ new/src/share/classes/javax/imageio/stream/ImageOutputStream.java 2014-01-09 11:49:33.000000000 -0800 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2000, 2007, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2000, 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 @@ -379,7 +379,7 @@ * \u0001 through \u007f, it is * represented by one byte: * - *

+     * 
      * (byte)c
      * 
* @@ -388,7 +388,7 @@ * \u07ff, then it is represented by two bytes, * to be written in the order shown: * - *


+     * 

      * (byte)(0xc0 | (0x1f & (c >> 6)))
      * (byte)(0x80 | (0x3f & c))
      * 
@@ -397,7 +397,7 @@ * \u0800 through uffff, then it is * represented by three bytes, to be written in the order shown: * - *


+     * 

      * (byte)(0xe0 | (0x0f & (c >> 12)))
      * (byte)(0x80 | (0x3f & (c >> 6)))
      * (byte)(0x80 | (0x3f & c))