<echo message="build.classpath is '${echoClasspath}'" />
-->
<echo message="javac.target is '${javac.target}'" />
+ <echo message="adding -Xlint:deprecation to javac" if:set="deprecation"/>
<javac includeantruntime="false" source="${javac.source}" target="${javac.target}" srcdir="${sourceDir}" destdir="${outputDir}" debug="${javac.debug}" classpathref="build.classpath">
+ <compilerarg value="-Xlint:deprecation" if:set="deprecation" />
<exclude name="jalview/*applet*" />
<exclude name="jalview/appletgui/**" />
<exclude name="com/stevesoft/**" />
/**
* @deprecated Use {@link #isConserved(int[][],int,int,boolean)} instead
*/
+ @Deprecated
public boolean isConserved(int[][] cons2, int col, int size)
{
+ System.out.println("DEPRECATED!!!!");
return isConserved(cons2, col, size, true);
}
tot += cons2[col][mask[i]];
}
- if ((double) tot > ((threshold * size) / 100))
+ if (tot > ((threshold * size) / 100))
{
// System.out.println("True conserved "+tot+" from "+threshold+" out of
// "+size+" : "+maskstr);