mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-07-14 03:50:49 -07:00
Unused error variables in catch block are not allowed (#24487)
This commit is contained in:
@@ -188,7 +188,7 @@ export class WorkspaceContext {
|
||||
}
|
||||
}
|
||||
return false;
|
||||
} catch (_error) {
|
||||
} catch {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
@@ -216,7 +216,7 @@ export class WorkspaceContext {
|
||||
}
|
||||
}
|
||||
return false;
|
||||
} catch (_error) {
|
||||
} catch {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user