diff --git a/jps/jps-builders/src/org/jetbrains/jps/incremental/IncProjectBuilder.java b/jps/jps-builders/src/org/jetbrains/jps/incremental/IncProjectBuilder.java index df31460086ea..d4cf5a46e6e3 100644 --- a/jps/jps-builders/src/org/jetbrains/jps/incremental/IncProjectBuilder.java +++ b/jps/jps-builders/src/org/jetbrains/jps/incremental/IncProjectBuilder.java @@ -217,7 +217,7 @@ public class IncProjectBuilder { // TODO: check how the output-source storage is filled and! if (context.isMake()) { // cleanup outputs - + // todo: use removed paths passed from IDEA? final OutputToSourceMapping storage = context.getBuildDataManager().getOutputToSourceStorage(); final HashSet allChunkRemovedSources = new HashSet(); @@ -281,8 +281,7 @@ public class IncProjectBuilder { else { final String outPath = file.getPath(); final String srcPath = outputToSourceStorage.getState(outPath); - if (srcPath != null) { - // if we know about the association + if (srcPath != null) { // if we know about the association final File srcFile = new File(srcPath); // todo: optimize if (!srcFile.exists()) {