jdk/src/share/classes/java/util/Calendar.java
changeset 18156 edb590d448c5
parent 16481 8e30386cc014
child 18829 ec84f0c313b0
--- a/jdk/src/share/classes/java/util/Calendar.java	Mon Jun 10 12:26:20 2013 +0200
+++ b/jdk/src/share/classes/java/util/Calendar.java	Mon Jun 10 12:58:32 2013 +0100
@@ -2681,9 +2681,9 @@
      * Returns whether this <code>Calendar</code> represents a time
      * before the time represented by the specified
      * <code>Object</code>. This method is equivalent to:
-     * <pre><blockquote>
+     * <pre>{@code
      *         compareTo(when) < 0
-     * </blockquote></pre>
+     * }</pre>
      * if and only if <code>when</code> is a <code>Calendar</code>
      * instance. Otherwise, the method returns <code>false</code>.
      *
@@ -2702,9 +2702,9 @@
      * Returns whether this <code>Calendar</code> represents a time
      * after the time represented by the specified
      * <code>Object</code>. This method is equivalent to:
-     * <pre><blockquote>
+     * <pre>{@code
      *         compareTo(when) > 0
-     * </blockquote></pre>
+     * }</pre>
      * if and only if <code>when</code> is a <code>Calendar</code>
      * instance. Otherwise, the method returns <code>false</code>.
      *