[Nice-commit] Nice/src/bossa/modules Content.java,1.15,1.16
Brought to you by:
bonniot
From: Daniel B. <bo...@us...> - 2004-07-23 21:52:49
|
Update of /cvsroot/nice/Nice/src/bossa/modules In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv390/src/bossa/modules Modified Files: Content.java Log Message: When source code is not available, use the last compilation time to determine if importing packages should be recompiled. Index: Content.java =================================================================== RCS file: /cvsroot/nice/Nice/src/bossa/modules/Content.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** Content.java 30 Jun 2004 14:12:37 -0000 1.15 --- Content.java 23 Jul 2004 21:52:40 -0000 1.16 *************** *** 40,46 **** "\nThe source path is: " + str(pkg.compilation.sourcePath) + "\nThe package path is: " + str(pkg.compilation.packagePath)); ! if (compiled != null) ! lastCompilation = compiled.lastCompilation; if (source != null) lastModification = source.lastModification; --- 40,49 ---- "\nThe source path is: " + str(pkg.compilation.sourcePath) + "\nThe package path is: " + str(pkg.compilation.packagePath)); ! ! // By default, use the last compilation time also as last modification time ! // This is a safe bet, and will be overwritten if source is also available. if (compiled != null) ! lastModification = lastCompilation = compiled.lastCompilation; ! if (source != null) lastModification = source.lastModification; |