S
Sam Takoy
Hi,
I have about 200 files in my source tree. I compile by ant:
<target name="source" depends="init" description="compile the source " >
<javac srcdir="${src}" destdir="${build}" debug="on"
includeantruntime="false">
<classpath>
<fileset dir="${home}/code/lib" includes="*.jar"/>
<fileset dir="${home}/tomcat/lib" includes="*.jar"/>
</classpath>
<!-- <compilerarg line="-Xlint:unchecked"/> -->
</javac>
</target>
Even if I do "ant" consecutively, I get
source:
[javac] Compiling 1 source file to C:\pg\code\bak\ProjectA\classes
There keeps being 1 file that keeps compiling, even if I changed
nothing. I know which file it is (DatePicker.java) and there is nothing
different about it. Its time signature is 12/2007 right in the middle of
all other files. What might be causing this OCD behavior?
Thanks in advance,
Sam
I have about 200 files in my source tree. I compile by ant:
<target name="source" depends="init" description="compile the source " >
<javac srcdir="${src}" destdir="${build}" debug="on"
includeantruntime="false">
<classpath>
<fileset dir="${home}/code/lib" includes="*.jar"/>
<fileset dir="${home}/tomcat/lib" includes="*.jar"/>
</classpath>
<!-- <compilerarg line="-Xlint:unchecked"/> -->
</javac>
</target>
Even if I do "ant" consecutively, I get
source:
[javac] Compiling 1 source file to C:\pg\code\bak\ProjectA\classes
There keeps being 1 file that keeps compiling, even if I changed
nothing. I know which file it is (DatePicker.java) and there is nothing
different about it. Its time signature is 12/2007 right in the middle of
all other files. What might be causing this OCD behavior?
Thanks in advance,
Sam