langtools/src/share/classes/com/sun/tools/sjavac/Main.java
changeset 26089 196b7a50a266
parent 26088 f479ca655ba1
child 26098 32588700060b
equal deleted inserted replaced
26088:f479ca655ba1 26089:196b7a50a266
   303         // (Unless we allow them to be there.)
   303         // (Unless we allow them to be there.)
   304         // I.e. artifacts that are not known according to the build database (javac_state).
   304         // I.e. artifacts that are not known according to the build database (javac_state).
   305         // For examples, files that have been manually copied into these dirs.
   305         // For examples, files that have been manually copied into these dirs.
   306         // Artifacts with bad timestamps (ie the on disk timestamp does not match the timestamp
   306         // Artifacts with bad timestamps (ie the on disk timestamp does not match the timestamp
   307         // in javac_state) have already been removed when the javac_state was loaded.
   307         // in javac_state) have already been removed when the javac_state was loaded.
   308         if (!options.isUnidentifiedArtifactPermitted()) {
   308         if (!options.areUnidentifiedArtifactsPermitted()) {
   309             javac_state.removeUnidentifiedArtifacts();
   309             javac_state.removeUnidentifiedArtifacts();
   310         }
   310         }
   311         // Go through all sources and taint all packages that miss artifacts.
   311         // Go through all sources and taint all packages that miss artifacts.
   312         javac_state.taintPackagesThatMissArtifacts();
   312         javac_state.taintPackagesThatMissArtifacts();
   313 
   313