diff options
author | Michael Koch <konqueror@gmx.de> | 2004-04-20 14:45:10 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2004-04-20 14:45:10 +0000 |
commit | a17c9f2ea1ecec71169eff40c591ca3bf8307a32 (patch) | |
tree | 2f1b4325d5c68c60284c5788c751fe9dfe6a3579 /libjava/java/util/logging/LogManager.java | |
parent | 386d3a1616016db1b84351554de4aa643fe0d92a (diff) | |
download | gcc-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/util/logging/LogManager.java')
-rw-r--r-- | libjava/java/util/logging/LogManager.java | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/libjava/java/util/logging/LogManager.java b/libjava/java/util/logging/LogManager.java index 36216bc..2475708 100644 --- a/libjava/java/util/logging/LogManager.java +++ b/libjava/java/util/logging/LogManager.java @@ -67,13 +67,12 @@ import java.lang.ref.WeakReference; * <code>java.util.logging.LogManager</code> is initialized. * The configuration process includes the subsequent steps: * - * <ol> + * <ul> * <li>If the system property <code>java.util.logging.manager</code> * is set to the name of a subclass of * <code>java.util.logging.LogManager</code>, an instance of * that subclass is created and becomes the global LogManager. * Otherwise, a new instance of LogManager is created.</li> - * * <li>The <code>LogManager</code> constructor tries to create * a new instance of the class specified by the system * property <code>java.util.logging.config.class</code>. @@ -91,14 +90,13 @@ import java.lang.ref.WeakReference; * {@link #readConfiguration(java.io.InputStream)}. * The name and location of this file are specified by the system * property <code>java.util.logging.config.file</code>.</li> - * * <li>If the system property <code>java.util.logging.config.file</code> * is not set, however, the contents of the URL * "{gnu.classpath.home.url}/logging.properties" are passed to * {@link #readConfiguration(java.io.InputStream)}. * Here, "{gnu.classpath.home.url}" stands for the value of * the system property <code>gnu.classpath.home.url</code>.</li> - * </ol> + * </ul> * * @author Sascha Brawer (brawer@acm.org) */ @@ -259,10 +257,10 @@ public class LogManager * * @param logger the logger to be added. * - * @return <code>true<code>if <code>logger</code> was added, + * @return <code>true</code>if <code>logger</code> was added, * <code>false</code> otherwise. * - * @throws NullPointerException if <code>name<code> is + * @throws NullPointerException if <code>name</code> is * <code>null</code>. */ public synchronized boolean addLogger(Logger logger) |