summaryrefslogtreecommitdiff
path: root/tutorial/js
diff options
context:
space:
mode:
authorRandy Abernethy <ra@apache.org>2014-11-15 22:21:36 -0800
committerRandy Abernethy <ra@apache.org>2014-11-15 22:21:36 -0800
commitc118db2ce4423e725da2ada57998bc857e3e411a (patch)
treeb5ecc3f7b274a8fd0eb8c11f387ee3fafb09445d /tutorial/js
parent8c16ed79c4d2d384f11275f526f9ca34cab77b3e (diff)
downloadthrift-c118db2ce4423e725da2ada57998bc857e3e411a.tar.gz
THRIFT-2830:clean up ant tutorial warnings
Client: Tutorial Patch: Randy Abernethy supress spurious ant warnings
Diffstat (limited to 'tutorial/js')
-rw-r--r--tutorial/js/build.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/tutorial/js/build.xml b/tutorial/js/build.xml
index 73d535d9b..a9a9ad4fb 100644
--- a/tutorial/js/build.xml
+++ b/tutorial/js/build.xml
@@ -51,13 +51,13 @@
</target>
<target name="compile" depends="init">
- <javac srcdir="${gen}" destdir="${build}" classpathref="libs.classpath" />
- <javac srcdir="${javasrc}" destdir="${build}" classpathref="build.classpath">
+ <javac includeantruntime="false" srcdir="${gen}" destdir="${build}" classpathref="libs.classpath" />
+ <javac includeantruntime="false" srcdir="${javasrc}" destdir="${build}" classpathref="build.classpath">
<exclude name="JavaClient.java"/>
<exclude name="JavaServer.java"/>
<include name="CalculatorHandler.java"/>
</javac>
- <javac srcdir="${src}" destdir="${build}" classpathref="build.classpath">
+ <javac includeantruntime="false" srcdir="${src}" destdir="${build}" classpathref="build.classpath">
<compilerarg value="-Xlint:all"/>
</javac>
</target>