mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Fix formatting
This commit is contained in:
parent
8bc7a14a0b
commit
4167d9486b
1 changed files with 2 additions and 1 deletions
|
@ -1061,7 +1061,8 @@ public abstract class AbstractLanguageSettingsOutputScanner extends LanguageSett
|
|||
private List<IResource> findPathInProject(IPath path, IProject project) {
|
||||
LRUCache<IPath, List<IResource>> cache = threadSafeComputeIfAbsent(project, findPathInProjectCache,
|
||||
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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue