Merge "Evict project in user cache on save of project meta data"

This commit is contained in:
Martin Fick
2011-11-07 13:16:49 -08:00
committed by gerrit code review
2 changed files with 12 additions and 5 deletions

View File

@@ -49,4 +49,9 @@ public class PerRequestProjectControlCache {
}
return ctl;
}
public void evict(Project project) {
projectCache.evict(project);
controls.remove(project.getNameKey());
}
}