Author: dennisl
Date: Wed May 3 02:25:54 2006
New Revision: 399224
URL: http://svn.apache.org/viewcvs?rev=399224&view=rev
Log:
Added some JavaDocs.
Removed a copy-pasted comment that didn't belong there.
Modified:
jakarta/commons/proper/logging/trunk/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java
Modified:
jakarta/commons/proper/logging/trunk/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java
URL:
http://svn.apache.org/viewcvs/jakarta/commons/proper/logging/trunk/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java?rev=399224&r1=399223&r2=399224&view=diff
==============================================================================
---
jakarta/commons/proper/logging/trunk/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java
(original)
+++
jakarta/commons/proper/logging/trunk/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java
Wed May 3 02:25:54 2006
@@ -118,7 +118,9 @@
* The name
(<code>org.apache.commons.logging.Log.allowFlawedContext</code>)
* of the system property which can be set true/false to
* determine system behaviour when a bad context-classloader is
encountered.
- * When set to false
+ * When set to false, a LogConfigurationException is thrown if
+ * LogFactoryImpl is loaded via a child classloader of the TCCL (this
+ * should never happen in sane systems).
*
* Default behaviour: true (tolerates bad context classloaders)
*
@@ -1248,8 +1250,7 @@
current = current.getParent();
}
- // scan c2's ancestors to find c1
- // scan c1's ancestors to find c2
+ // scan c2's ancestors to find c1
current = c2;
while (current != null) {
if (current == c1)
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]