view patches/openjdk/6875861-docs-properties.patch @ 1738:3ac8e6470d4f

Backport upstream patches to fix warnings in documentation generation. 2010-07-21 Andrew John Hughes <ahughes@redhat.com> Backport documentation patches to avoid documentation errors. * .hgignore: Remove broken openjdk regexp matching. * Makefile.am: Add new patches. * patches/openjdk/4891262-docs-accessibility.patch, * patches/openjdk/6737212-docs-sql.patch, * patches/openjdk/6875861-docs-properties.patch, * patches/openjdk/6909563-docs-rmi.patch, * patches/openjdk/6917485-docs-corba.patch, * patches/openjdk/6921068-docs-specdefault.patch: Fix warnings in producing documentation.
author Andrew John Hughes <ahughes@redhat.com>
date Wed, 21 Jul 2010 17:39:05 +0100
parents
children
line wrap: on
line source

# HG changeset patch
# User darcy
# Date 1251251906 25200
# Node ID f2172f732eb3b84f62b0164514eb59a2a5830210
# Parent  88557649e47f984d0412243232486534004c65af
6875861: javadoc build warning on java.util.Properites from unconventional @see ordering
Reviewed-by: martin

diff -r 88557649e47f -r f2172f732eb3 src/share/classes/java/util/Properties.java
--- openjdk.orig/jdk/src/share/classes/java/util/Properties.java	Mon Dec 21 18:16:23 2009 +0000
+++ openjdk/jdk/src/share/classes/java/util/Properties.java	Tue Aug 25 18:58:26 2009 -0700
@@ -101,12 +101,12 @@
  *    &lt;!ATTLIST entry key CDATA #REQUIRED&gt;
  * </pre>
  *
+ * <p>This class is thread-safe: multiple threads can share a single
+ * <tt>Properties</tt> object without the need for external synchronization.
+ *
  * @see <a href="../../../technotes/tools/solaris/native2ascii.html">native2ascii tool for Solaris</a>
  * @see <a href="../../../technotes/tools/windows/native2ascii.html">native2ascii tool for Windows</a>
  *
- * <p>This class is thread-safe: multiple threads can share a single
- * <tt>Properties</tt> object without the need for external synchronization.
- *
  * @author  Arthur van Hoff
  * @author  Michael McCloskey
  * @author  Xueming Shen