Skip to content

Commit 2154095

Browse files
committed
fix: remove unused parameter from getLogItems method
1 parent d2c5035 commit 2154095

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to the "magento-log-viewer" extension will be documented in this file.
44

5+
## Next Release
6+
7+
- fix: remove unused parameters to improve code quality
8+
9+
---
10+
511
## Latest Release
612

713
## [1.10.1] - 2025-03-12

src/logViewer.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export class LogViewerProvider implements vscode.TreeDataProvider<LogItem>, vsco
6161
return normalizedDir === normalizedLogPath;
6262
}
6363

64-
private getLogItems(dir: string, label: string): LogItem[] {
64+
private getLogItems(dir: string): LogItem[] {
6565
if (!pathExists(dir)) {
6666
return [new LogItem(`No items found`, vscode.TreeItemCollapsibleState.None)];
6767
}

0 commit comments

Comments
 (0)