Repository: commons-lang Updated Branches: refs/heads/master 7aad59482 -> 0e20d1582
[LANG-1361] ExceptionUtils.getThrowableList() is using deprecated ExceptionUtils.getCause() Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/0e20d158 Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/0e20d158 Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/0e20d158 Branch: refs/heads/master Commit: 0e20d158200e35a893c734f3ba268a1f5d3c48d0 Parents: 7aad594 Author: Gary Gregory <ggreg...@apache.org> Authored: Mon Oct 23 12:12:54 2017 -0600 Committer: Gary Gregory <ggreg...@apache.org> Committed: Mon Oct 23 12:12:54 2017 -0600 ---------------------------------------------------------------------- .../java/org/apache/commons/lang3/exception/ExceptionUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-lang/blob/0e20d158/src/main/java/org/apache/commons/lang3/exception/ExceptionUtils.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/lang3/exception/ExceptionUtils.java b/src/main/java/org/apache/commons/lang3/exception/ExceptionUtils.java index 5da1a83..95e2992 100644 --- a/src/main/java/org/apache/commons/lang3/exception/ExceptionUtils.java +++ b/src/main/java/org/apache/commons/lang3/exception/ExceptionUtils.java @@ -168,7 +168,7 @@ public class ExceptionUtils { * <p>Introspects the <code>Throwable</code> to obtain the root cause.</p> * * <p>This method walks through the exception chain to the last element, - * "root" of the tree, using {@link #getCause(Throwable)}, and + * "root" of the tree, using {@link Throwable#getCause()}, and * returns that exception.</p> * * <p>From version 2.2, this method handles recursive cause structures