in src/net/sourceforge/transparent/ChangeManagement/CCaseChangeProvider.java [304:318]
private void iterateOverDirtyFiles( final VcsDirtyScope scope )
{
for( FilePath path : scope.getDirtyFiles() )
{
String fileName = path.getPath();
VirtualFile file = path.getVirtualFile();
if( host.isFileIgnored(file))
filesIgnored.add( fileName );
else
// if( isFileCCaseProcessable( file ) && isProperNotification( path ) )
if( (file != null) && file.isWritable() && isProperNotification( path ) )
filesWritable.add( fileName );
}
}