aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/text/CollationKey.java
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2004-04-20 14:45:10 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2004-04-20 14:45:10 +0000
commita17c9f2ea1ecec71169eff40c591ca3bf8307a32 (patch)
tree2f1b4325d5c68c60284c5788c751fe9dfe6a3579 /libjava/java/text/CollationKey.java
parent386d3a1616016db1b84351554de4aa643fe0d92a (diff)
downloadgcc-a17c9f2ea1ecec71169eff40c591ca3bf8307a32.zip
gcc-a17c9f2ea1ecec71169eff40c591ca3bf8307a32.tar.gz
gcc-a17c9f2ea1ecec71169eff40c591ca3bf8307a32.tar.bz2
MarshalledObject.java, [...]: Fixed javadoc, coding style and argument names all over.
2004-04-20 Michael Koch <konqueror@gmx.de> * java/rmi/MarshalledObject.java, java/rmi/Naming.java, java/rmi/RemoteException.java, java/rmi/activation/ActivationException.java, java/rmi/server/ServerCloneException.java, java/security/AccessController.java, java/security/AlgorithmParameterGenerator.java, java/security/AlgorithmParameters.java, java/security/CodeSource.java, java/security/Identity.java, java/security/IdentityScope.java, java/security/KeyPairGenerator.java, java/security/KeyStore.java, java/security/Security.java, java/security/Signature.java, java/security/SignatureSpi.java, java/security/SignedObject.java, java/security/spec/DSAParameterSpec.java, java/security/spec/DSAPrivateKeySpec.java, java/security/spec/DSAPublicKeySpec.java, java/sql/Array.java, java/sql/DatabaseMetaData.java, java/sql/ResultSet.java, java/text/ChoiceFormat.java, java/text/CollationElementIterator.java, java/text/CollationKey.java, java/text/Collator.java, java/text/DateFormat.java, java/text/DateFormatSymbols.java, java/text/DecimalFormatSymbols.java, java/text/Format.java, java/text/ParsePosition.java, java/text/RuleBasedCollator.java, java/text/SimpleDateFormat.java, java/text/StringCharacterIterator.java, java/util/Collections.java, java/util/PropertyResourceBundle.java, java/util/ResourceBundle.java, java/util/StringTokenizer.java, java/util/jar/Attributes.java, java/util/logging/ConsoleHandler.java, java/util/logging/LogManager.java, java/util/logging/MemoryHandler.java, java/util/logging/SocketHandler.java, javax/naming/NamingException.java: Fixed javadoc, coding style and argument names all over. From-SVN: r80906
Diffstat (limited to 'libjava/java/text/CollationKey.java')
-rw-r--r--libjava/java/text/CollationKey.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/java/text/CollationKey.java b/libjava/java/text/CollationKey.java
index 8859b32..abc28b2 100644
--- a/libjava/java/text/CollationKey.java
+++ b/libjava/java/text/CollationKey.java
@@ -140,12 +140,12 @@ public final class CollationKey implements Comparable
* this object. This will be true if and only if:
* <p>
* <ul>
- * <li>The specified object must not be <code>null</code>
- * <li>The specified object is an instance of <code>CollationKey</code>.
+ * <li>The specified object must not be <code>null</code></li>
+ * <li>The specified object is an instance of <code>CollationKey</code>.</li>
* <li>The specified object was created from the same <code>Collator</code>
- * as this object.
+ * as this object.</li>
* <li>The specified object has the same source string and bit key as
- * this object.
+ * this object.</li>
* </ul>
*
* @param obj The <code>Object</code> to test for equality.