Changeset 7027 in josm for trunk/build.xml


Ignore:
Timestamp:
2014-04-29T15:35:53+02:00 (11 years ago)
Author:
Don-vip
Message:

fix more warnings (-Xlint:rawtypes), remove deprecated method and unused imports

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/build.xml

    r7022 r7027  
    269269    <target name="test-compile" depends="test-init,dist">
    270270        <javac srcdir="${test.dir}/unit" classpathref="test.classpath" destdir="${test.dir}/build" target="1.7" source="1.7" debug="on" includeantruntime="false" encoding="UTF-8">
    271             <compilerarg value="-Xlint:deprecation"/>
    272             <compilerarg value="-Xlint:unchecked"/>
     271            <compilerarg value="-Xlint:all"/>
     272            <compilerarg value="-Xlint:-serial"/>
    273273        </javac>
    274274        <javac srcdir="${test.dir}/functional" classpathref="test.classpath" destdir="${test.dir}/build" target="1.7" source="1.7" debug="on" includeantruntime="false" encoding="UTF-8">
    275             <compilerarg value="-Xlint:deprecation"/>
    276             <compilerarg value="-Xlint:unchecked"/>
     275            <compilerarg value="-Xlint:all"/>
     276            <compilerarg value="-Xlint:-serial"/>
    277277        </javac>
    278278    </target>
Note: See TracChangeset for help on using the changeset viewer.