File tree Expand file tree Collapse file tree
src/vs/workbench/parts/debug Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -284,7 +284,6 @@ export interface IDebugConfiguration {
284284
285285export interface IGlobalConfig {
286286 version : string ;
287- debugServer ?: number ;
288287 configurations : IConfig [ ] ;
289288}
290289
Original file line number Diff line number Diff line change @@ -158,12 +158,7 @@ const schema: IJSONSchema = {
158158 'type' : 'object' ,
159159 oneOf : [ ]
160160 }
161- } ,
162- // TODO@Isidor remove support for this in December
163- debugServer : {
164- type : 'number' ,
165- description : nls . localize ( 'app.launch.json.debugServer' , "DEPRECATED: please move debugServer inside a configuration." )
166- } ,
161+ }
167162 }
168163} ;
169164
@@ -264,9 +259,6 @@ export class ConfigurationManager implements debug.IConfigurationManager {
264259
265260 result = filtered . length === 1 ? filtered [ 0 ] : config . configurations [ 0 ] ;
266261 result = objects . deepClone ( result ) ;
267- if ( config && result && config . debugServer ) {
268- result . debugServer = config . debugServer ;
269- }
270262 }
271263
272264 if ( result ) {
You can’t perform that action at this time.
0 commit comments