File tree Expand file tree Collapse file tree 3 files changed +0
-15
lines changed Expand file tree Collapse file tree 3 files changed +0
-15
lines changed Original file line number Diff line number Diff line change 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 ,
Original file line number Diff line number Diff 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 ;
Original file line number Diff line number Diff 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 ) {
You can’t perform that action at this time.
0 commit comments