StaleResourceScanner.java line 94
mapping.getTargetFiles(targetDir, path) at line 94 is assigned to targetFiles and then iterated at line 99 with a for-each loop. If a SourceMapping implementation returns null (the interface contract does not explicitly forbid it), this will throw a NullPointerException.
Fix: add a null check before iterating.
Bug #5
StaleResourceScanner.javaline 94mapping.getTargetFiles(targetDir, path)at line 94 is assigned totargetFilesand then iterated at line 99 with a for-each loop. If aSourceMappingimplementation returnsnull(the interface contract does not explicitly forbid it), this will throw aNullPointerException.Fix: add a null check before iterating.