diff options
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 36216bc408b..24757089410 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) |