summaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2007-06-28 22:08:03 +0000
committerKenneth Russel <[email protected]>2007-06-28 22:08:03 +0000
commitda5994c7e7c7e2847b3ad49bf617549130006558 (patch)
tree5abd6003071d3cadf9a104d41f59d902bb7da96f /build.xml
parente9331cd3621c1e81c3bf99675f101c5f95ccd745 (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.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/build.xml b/build.xml
index e79e1af..b2519ce 100644
--- a/build.xml
+++ b/build.xml
@@ -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"/>