diff options
author | Kenneth Russel <[email protected]> | 2007-06-28 22:08:03 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2007-06-28 22:08:03 +0000 |
commit | da5994c7e7c7e2847b3ad49bf617549130006558 (patch) | |
tree | 5abd6003071d3cadf9a104d41f59d902bb7da96f /build.xml | |
parent | e9331cd3621c1e81c3bf99675f101c5f95ccd745 (diff) |
Removed use of generics and other 5.0 language features and adjusted
WITHOUT_GENERICS
the build.xml to make it build on 1.4.2
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -40,8 +40,8 @@ * intended for use in the design, construction, operation or * maintenance of any nuclear facility. * - * $Revision: 1.3 $ - * $Date: 2007/06/19 20:37:39 $ + * $Revision: 1.4 $ + * $Date: 2007/06/28 22:08:03 $ * $State: Exp $ */ --> @@ -63,8 +63,8 @@ <!-- Compile the java code from ${src} into ${build}/classes --> <javac srcdir="${src}" destdir="${build}/classes" - source="1.5" - target="1.5" + source="1.4" + target="1.4" debug="true" deprecation="true"/> |