From bab78e92bb785cbb847d361cfae157951d45e7ea Mon Sep 17 00:00:00 2001 From: Henri Yandell Date: Thu, 7 May 2009 08:28:13 +0000 Subject: [PATCH] Type doesn't need tobe ArrayList git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@772544 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/commons/lang/exception/ExceptionUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/org/apache/commons/lang/exception/ExceptionUtils.java b/src/java/org/apache/commons/lang/exception/ExceptionUtils.java index add3890f3..46390ff37 100644 --- a/src/java/org/apache/commons/lang/exception/ExceptionUtils.java +++ b/src/java/org/apache/commons/lang/exception/ExceptionUtils.java @@ -806,7 +806,7 @@ public class ExceptionUtils { } Throwable throwables[] = getThrowables(throwable); int count = throwables.length; - ArrayList frames = new ArrayList(); + List frames = new ArrayList(); List nextTrace = getStackFrameList(throwables[count - 1]); for (int i = count; --i >= 0;) { List trace = nextTrace;