on 7/18/2000 7:00 AM, "Diethelm Guallar, Gonzalo"
<[EMAIL PROTECTED]> wrote:

> This was on a daily snapshot, Apache-Turbine-20000717.tar.gz,
> extracted with WinZip 6.3 SR1. I copied the file to a linux
> machine and verified all the files had no problems; I guess I
> hit a bug with this version of WinZip (scary thought). Anyway,
> I downloaded the 0718 snapshot, and everything built Ok (modulo
> the deprecated methods).

WinZip has been buggy for me in the past.

> Does java have any conditional compilation features? I guess not...

Java itself doesn't, but Ant does and Java also has reflection which allows
you to emulate conditional compilation and that is how we got 2.0 and 2.1 to
work together. It is a hack though and should be removed eventually.

> Well, this is definitely odd. The file ImageServer.java, extracted
> from the 0717 snapshot, has these lines:
> 
> 94         if ( image == null )
> 95         {
> 96             // should do more logging here
> 97             Log.error( "ImageServer - image is null!" );
> 98             return null;
> 99         }
> 
> The same file, extracted from the 0718 snapshot, has these lines:
> 
> 94         if ( image == null )
> 95         {
> 96             // should do more logging here
> 97             Log.error( "ImageServer - image is null!" );
> 98             return;
> 99         }
> 
> so something definitely changed here!

Yes, this code has been worked on. You really should check the cvs logs:

<http://www.working-dogs.com/turbine/cvsweb/index.cgi/turbine/src/java/org/a
pache/turbine/modules/screens/ImageServer.java>

-jon



------------------------------------------------------------
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Search: <http://www.mail-archive.com/turbine%40list.working-dogs.com/>
Problems?:           [EMAIL PROTECTED]

Reply via email to