doesn't work. the use of enum has changed.
If you change build.xml so that all the "javac" elements have a
"source='1.4'" attribute then it compiles with warnings.
That is take:
<javac srcdir="${build.src}"
destdir="${build.dest}"
...
optimize="${optimize}">
...
and change it to:
<javac srcdir="${build.src}"
destdir="${build.dest}"
source="1.4"
...
optimize="${optimize}">
...
and no errors.
Rankin Johnson
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]