summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-07-27 02:45:00 -0700
committerPaul Phillips <paulp@improving.org>2012-07-27 05:42:17 -0700
commit61d1933e29e1730a981edf738c902a39c7d322de (patch)
tree5eb493e812687d05af8628b0ba6c3fe7c1d460cd /build.xml
parent785c4ddedd68914f7b5667d0e9733e3fddebe1a0 (diff)
downloadscala-61d1933e29e1730a981edf738c902a39c7d322de.tar.gz
scala-61d1933e29e1730a981edf738c902a39c7d322de.tar.bz2
scala-61d1933e29e1730a981edf738c902a39c7d322de.zip
Eliminated remainder of "catches Throwable" warnings.
And also non-exhaustive matches. And added -nowarn to the build options for scalacheck, we don't need to hear the warnings for code we aren't able to fix.
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.xml b/build.xml
index 6833986ac8..c0f0e33f80 100644
--- a/build.xml
+++ b/build.xml
@@ -1294,7 +1294,7 @@ QUICK BUILD (QUICK)
<scalacfork
destdir="${build-quick.dir}/classes/scalacheck"
compilerpathref="quick.classpath"
- params="${scalac.args.quick}"
+ params="${scalac.args.quick} -nowarn"
srcdir="${src.dir}/scalacheck"
jvmargs="${scalacfork.jvmargs}">
<include name="**/*.scala"/>
@@ -1942,7 +1942,7 @@ BOOTSTRAPPING BUILD (STRAP)
<scalacfork
destdir="${build-strap.dir}/classes/scalacheck"
compilerpathref="pack.classpath"
- params="${scalac.args.quick}"
+ params="${scalac.args.quick} -nowarn"
srcdir="${src.dir}/scalacheck"
jvmargs="${scalacfork.jvmargs}">
<include name="**/*.scala"/>