diff --git a/src/java/org/apache/commons/logging/LogConfigurationException.java b/src/java/org/apache/commons/logging/LogConfigurationException.java index 61ae3f3..d841716 100644 --- a/src/java/org/apache/commons/logging/LogConfigurationException.java +++ b/src/java/org/apache/commons/logging/LogConfigurationException.java @@ -27,6 +27,9 @@ package org.apache.commons.logging; */ public class LogConfigurationException extends RuntimeException { + /** Serializable version identifier. */ + private static final long serialVersionUID = 8486587136871052495L; + /** * Construct a new exception with null as its detail message. */ diff --git a/src/java/org/apache/commons/logging/LogSource.java b/src/java/org/apache/commons/logging/LogSource.java index 5d4681f..f201fac 100644 --- a/src/java/org/apache/commons/logging/LogSource.java +++ b/src/java/org/apache/commons/logging/LogSource.java @@ -23,12 +23,12 @@ import java.util.Hashtable; import org.apache.commons.logging.impl.NoOpLog; /** - *

Factory for creating {@link Log} instances. Applications should call + * Factory for creating {@link Log} instances. Applications should call * the makeNewLogInstance() method to instantiate new instances - * of the configured {@link Log} implementation class.

- * - *

By default, calling getInstance() will use the following - * algorithm:

+ * of the configured {@link Log} implementation class. + *

+ * By default, calling getInstance() will use the following + * algorithm: *

- * - *

You can change the default behavior in one of two ways:

+ *

+ * You can change the default behavior in one of two ways: *