diff options
| author | Michael Peter Christen <mc@yacy.net> | 2023-10-04 22:00:30 +0200 |
|---|---|---|
| committer | Michael Peter Christen <mc@yacy.net> | 2023-10-04 22:00:30 +0200 |
| commit | aeb4c7a660b8913565fb438ce14434d2d728c34d (patch) | |
| tree | edf94377ff5aba9ccdb8169930e6f24189b371b1 | |
| parent | 095a444aa71772dc5d2ad170a7975daf99fcbf57 (diff) | |
removed warnings during normal build
| -rw-r--r-- | build.xml | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -171,9 +171,10 @@ <echo message="project.class.path: ${toString:project.class.path}" /> <javac srcdir="${src}/" destdir="${build}" debug="true" debuglevel="lines,vars,source" includeantruntime="false" - source="${javacSource}" target="${javacTarget}" encoding="UTF-8"> + source="${javacSource}" target="${javacTarget}" encoding="UTF-8" + nowarn="on"> <classpath refid="project.class.path" /> - <compilerarg value="-Xlint"/> + <compilerarg value="-Xlint:unchecked"/> </javac> <!-- prepare classpath for MANIFEST (manifest cp is relative to jar) --> |
