remove javadocs detailing things the #getCause() methods no longer do

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1091084 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Matthew Jason Benson 2011-04-11 14:18:26 +00:00
parent 82ce12fee3
commit ca7f616594
1 changed files with 0 additions and 9 deletions

View File

@ -111,9 +111,6 @@ public static String[] getDefaultCauseMethodNames() {
* <li><code>getNested()</code></li> * <li><code>getNested()</code></li>
* </ul> * </ul>
* *
* <p>In the absence of any such method, the object is inspected for a
* <code>detail</code> field assignable to a <code>Throwable</code>.</p>
*
* <p>If none of the above is found, returns <code>null</code>.</p> * <p>If none of the above is found, returns <code>null</code>.</p>
* *
* @param throwable the throwable to introspect for a cause, may be null * @param throwable the throwable to introspect for a cause, may be null
@ -130,12 +127,6 @@ public static Throwable getCause(Throwable throwable) {
/** /**
* <p>Introspects the <code>Throwable</code> to obtain the cause.</p> * <p>Introspects the <code>Throwable</code> to obtain the cause.</p>
* *
* <ol>
* <li>Try known exception types.</li>
* <li>Try the supplied array of method names.</li>
* <li>Try the field 'detail'.</li>
* </ol>
*
* <p>A <code>null</code> set of method names means use the default set. * <p>A <code>null</code> set of method names means use the default set.
* A <code>null</code> in the set of method names will be ignored.</p> * A <code>null</code> in the set of method names will be ignored.</p>
* *