jdk/src/share/classes/javax/imageio/stream/ImageInputStream.java
changeset 22260 c9185e010e03
parent 21278 ef8a3a2a72f2
--- 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 @@
      * <code>UTFDataFormatException</code> is thrown. Otherwise, the
      * group is converted to the character:
      *
-     * <p> <pre><code>
+     * <pre><code>
      * (char)(((a&amp; 0x1F) &lt;&lt; 6) | (b &amp; 0x3F))
      * </code></pre>
      *
@@ -460,7 +460,7 @@
      * <code>UTFDataFormatException</code> is thrown. Otherwise, the
      * group is converted to the character:
      *
-     * <p> <pre><code>
+     * <pre><code>
      * (char)(((a &amp; 0x0F) &lt;&lt; 12) | ((b &amp; 0x3F) &lt;&lt; 6) | (c &amp; 0x3F))
      * </code></pre>
      *