Skip to content

Commit 26f77a6

Browse files
committed
Remove Schemas config
1 parent a7a66b9 commit 26f77a6

File tree

2 files changed

+6
-13
lines changed

2 files changed

+6
-13
lines changed

package.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,6 @@
3131
"type": "boolean",
3232
"description": "Enable/disable the SQL validator",
3333
"default": false
34-
},
35-
"vscode-db2i.schemas": {
36-
"type": "boolean",
37-
"description": "Enable/disable the Schemas tool (preview)",
38-
"default": false
3934
}
4035
}
4136
},

src/extension.js

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,12 @@ function activate(context) {
1919
// This line of code will only be executed once when your extension is activated
2020
console.log(`Congratulations, your extension "vscode-db2i" is now active!`);
2121

22-
if (Configuration.get(`schemas`)) {
23-
context.subscriptions.push(
24-
vscode.window.registerTreeDataProvider(
25-
`schemaBrowser`,
26-
new schemaBrowser(context)
27-
),
28-
);
29-
}
22+
context.subscriptions.push(
23+
vscode.window.registerTreeDataProvider(
24+
`schemaBrowser`,
25+
new schemaBrowser(context)
26+
),
27+
);
3028

3129
languageProvider.initialise(context);
3230
}

0 commit comments

Comments
 (0)