Thanks Jeff for spotting this!
Will be fixed asap.
Carsten
> -----Original Message-----
> From: Jeff Turner [mailto:jefft@apache.org]
> Sent: Tuesday, May 27, 2003 1:37 PM
> To: cocoon-dev@xml.apache.org
> Subject: Build breaks on JDK1.3 (Re: cvs commit: ...)
>
>
> On Mon, May 26, 2003 at 02:29:53PM -0000, cziegeler@apache.org wrote:
> > cziegeler 2003/05/26 07:29:53
> ...
> > SimpleProfileManager.java
> ...
> > + private boolean isSourceNotFoundException(Throwable t) {
> > + while (t != null) {
> > + if (t instanceof SourceNotFoundException)
> > + return true;
> > + t = t.getCause();
> > }
>
> Exception.getCause() is a 1.4-only method. Perhaps t can be typecast to
> a CascadingThrowable?
>
> --Jeff
>
|