1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Fix formatting

This commit is contained in:
Jonah Graham 2025-02-10 11:55:10 -05:00
parent 8bc7a14a0b
commit 4167d9486b

View file

@ -1061,7 +1061,8 @@ public abstract class AbstractLanguageSettingsOutputScanner extends LanguageSett
private List<IResource> findPathInProject(IPath path, IProject project) { private List<IResource> findPathInProject(IPath path, IProject project) {
LRUCache<IPath, List<IResource>> cache = threadSafeComputeIfAbsent(project, findPathInProjectCache, LRUCache<IPath, List<IResource>> cache = threadSafeComputeIfAbsent(project, findPathInProjectCache,
key -> new LRUCache<IPath, List<IResource>>(FIND_RESOURCES_CACHE_SIZE), findPathInProjectCacheLock); key -> new LRUCache<IPath, List<IResource>>(FIND_RESOURCES_CACHE_SIZE), findPathInProjectCacheLock);
return threadSafeComputeIfAbsent(path, cache, key -> findPathInFolder(path, project), findPathInFoldertCacheLock); return threadSafeComputeIfAbsent(path, cache, key -> findPathInFolder(path, project),
findPathInFoldertCacheLock);
} }
/** /**