mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-29 14:34:55 -07:00
Disallow redundant typecasts. (#15030)
This commit is contained in:
committed by
GitHub
parent
fcc3b2b5ec
commit
942bcfc61e
@@ -40,7 +40,7 @@ export const read = (key: string): string[] | undefined => crawlCache.get(key);
|
||||
export const write = (key: string, results: string[], ttlMs: number): void => {
|
||||
// Clear any existing timer for this key to prevent premature deletion
|
||||
if (cacheTimers.has(key)) {
|
||||
clearTimeout(cacheTimers.get(key)!);
|
||||
clearTimeout(cacheTimers.get(key));
|
||||
}
|
||||
|
||||
// Store the new data
|
||||
|
||||
@@ -129,7 +129,7 @@ class RecursiveFileSearch implements FileSearch {
|
||||
|
||||
let filteredCandidates;
|
||||
const { files: candidates, isExactMatch } =
|
||||
await this.resultCache!.get(pattern);
|
||||
await this.resultCache.get(pattern);
|
||||
|
||||
if (isExactMatch) {
|
||||
// Use the cached result.
|
||||
@@ -151,7 +151,7 @@ class RecursiveFileSearch implements FileSearch {
|
||||
}
|
||||
|
||||
if (shouldCache) {
|
||||
this.resultCache!.set(pattern, filteredCandidates);
|
||||
this.resultCache.set(pattern, filteredCandidates);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user