From 0b3f9dcadcdaf69530b76245d07cfd92bde67977 Mon Sep 17 00:00:00 2001 From: Daniel Rall Date: Wed, 21 Aug 2002 07:31:54 +0000 Subject: [PATCH] Broke long lines; no functional change. git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@136973 13f79535-47bb-0310-9956-ffa450edef68 --- .../commons/lang/exception/NestableDelegate.java | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/java/org/apache/commons/lang/exception/NestableDelegate.java b/src/java/org/apache/commons/lang/exception/NestableDelegate.java index 73c5960c0..8d9a74da3 100644 --- a/src/java/org/apache/commons/lang/exception/NestableDelegate.java +++ b/src/java/org/apache/commons/lang/exception/NestableDelegate.java @@ -67,7 +67,7 @@ * @author Daniel Rall * @author Kasper Nielsen * @author Steven Caswell - * @version $Id: NestableDelegate.java,v 1.3 2002/08/21 07:22:47 dlr Exp $ + * @version $Id: NestableDelegate.java,v 1.4 2002/08/21 07:31:54 dlr Exp $ */ public class NestableDelegate { @@ -181,7 +181,9 @@ String[] getMessages() // package String[] msgs = new String[throwables.length]; for(int i = 0; i < throwables.length; i++) { - msgs[i] = (Nestable.class.isInstance(throwables[i]) ? ((Nestable) throwables[i]).getMessage(0) : throwables[i].getMessage()); + msgs[i] = (Nestable.class.isInstance(throwables[i]) ? + ((Nestable) throwables[i]).getMessage(0) : + throwables[i].getMessage()); } return msgs; } @@ -272,12 +274,14 @@ int indexOfThrowable(Class type, int fromIndex) // package { if(fromIndex < 0) { - throw new IndexOutOfBoundsException("Throwable index out of range: " + fromIndex); + throw new IndexOutOfBoundsException("Throwable index out of range: " + + fromIndex); } Throwable throwables[] = this.getThrowables(); if(fromIndex >= throwables.length) { - throw new IndexOutOfBoundsException("Throwable index out of range: " + fromIndex); + throw new IndexOutOfBoundsException("Throwable index out of range: " + + fromIndex); } for(int i = fromIndex; i < throwables.length; i++) {