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
This commit is contained in:
parent
97631fd612
commit
bab78e92bb
|
@ -806,7 +806,7 @@ public class ExceptionUtils {
|
|||
}
|
||||
Throwable throwables[] = getThrowables(throwable);
|
||||
int count = throwables.length;
|
||||
ArrayList<String> frames = new ArrayList<String>();
|
||||
List<String> frames = new ArrayList<String>();
|
||||
List<String> nextTrace = getStackFrameList(throwables[count - 1]);
|
||||
for (int i = count; --i >= 0;) {
|
||||
List<String> trace = nextTrace;
|
||||
|
|
Loading…
Reference in New Issue