Skip to content

Commit 6090ee1

Browse files
committed
fixing errors
1 parent 4629189 commit 6090ee1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/objectExplorer/addConnectionTreeNode.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import * as LocalizedConstants from '../constants/locConstants';
1010
import { ObjectExplorerUtils } from './objectExplorerUtils';
1111

1212
export class AddConnectionTreeNode extends vscode.TreeItem {
13-
private test = vscode.l10n.t('test');
13+
private _test = vscode.l10n.t('test');
1414

1515
constructor() {
1616
super(LocalizedConstants.msgAddConnection, vscode.TreeItemCollapsibleState.None);
@@ -22,6 +22,6 @@ export class AddConnectionTreeNode extends vscode.TreeItem {
2222
light: path.join(ObjectExplorerUtils.rootPath, 'add_light.svg'),
2323
dark: path.join(ObjectExplorerUtils.rootPath, 'add_dark.svg')
2424
};
25-
console.log(test);
25+
console.log(this._test);
2626
}
2727
}

0 commit comments

Comments
 (0)