Skip to content

Commit 672ba3f

Browse files
committed
Remove selectDefaultSimulateExtension
1 parent 5aaf23f commit 672ba3f

File tree

3 files changed

+0
-15
lines changed

3 files changed

+0
-15
lines changed

vscode-wpilib/package.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -149,12 +149,6 @@
149149
"description": "Skip selection of simulation extensions",
150150
"scope": "resource"
151151
},
152-
"wpilib.selectDefaultSimulateExtension": {
153-
"type": "boolean",
154-
"default": false,
155-
"description": "Select all simulation extensions by default",
156-
"scope": "resource"
157-
},
158152
"wpilib.stopSimulationOnEntry": {
159153
"type": "boolean",
160154
"default": false,

vscode-wpilib/src/api.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@ export interface IPreferences {
122122
getProjectYear(): string;
123123
setProjectYear(year: string): Promise<void>;
124124
getSkipTests(): boolean;
125-
getSelectDefaultSimulateExtension(): boolean;
126125
getStopSimulationOnEntry(): boolean;
127126
getAdditionalGradleArguments(): string;
128127
getOffline(): boolean;

vscode-wpilib/src/preferences.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -180,14 +180,6 @@ export class Preferences implements IPreferences {
180180
return res;
181181
}
182182

183-
public getSelectDefaultSimulateExtension(): boolean {
184-
const res = this.getConfiguration().get<boolean>('selectDefaultSimulateExtension');
185-
if (res === undefined) {
186-
return false;
187-
}
188-
return res;
189-
}
190-
191183
public getStopSimulationOnEntry(): boolean {
192184
const res = this.getConfiguration().get<boolean>('stopSimulationOnEntry');
193185
if (res === undefined) {

0 commit comments

Comments
 (0)