@@ -308,7 +308,6 @@ export class PlatformProjectServiceStub extends EventEmitter implements IPlatfor
308
308
frameworkPackageName : "" ,
309
309
normalizedPlatformName : "" ,
310
310
platformProjectService : this ,
311
- emulatorServices : undefined ,
312
311
projectRoot : "" ,
313
312
deviceBuildOutputPath : "" ,
314
313
getValidBuildOutputData : ( buildOptions : IBuildOutputOptions ) => ( { packageNames : [ ] } ) ,
@@ -423,7 +422,6 @@ export class PlatformsDataStub extends EventEmitter implements IPlatformsData {
423
422
return {
424
423
frameworkPackageName : "" ,
425
424
platformProjectService : new PlatformProjectServiceStub ( ) ,
426
- emulatorServices : undefined ,
427
425
projectRoot : "" ,
428
426
normalizedPlatformName : "" ,
429
427
appDestinationDirectoryPath : "" ,
@@ -818,28 +816,6 @@ export class PlatformServiceStub extends EventEmitter implements IPlatformServic
818
816
}
819
817
}
820
818
821
- export class EmulatorPlatformService implements IEmulatorPlatformService {
822
- public listAvailableEmulators ( platform : string ) : Promise < void > {
823
- return Promise . resolve ( ) ;
824
- }
825
-
826
- public getEmulatorInfo ( platform : string , nameOfId : string ) : Promise < IEmulatorInfo > {
827
- return Promise . resolve ( null ) ;
828
- }
829
-
830
- public getiOSEmulators ( ) : Promise < IEmulatorInfo [ ] > {
831
- return Promise . resolve ( null ) ;
832
- }
833
-
834
- public getAndroidEmulators ( ) : IEmulatorInfo [ ] {
835
- return null ;
836
- }
837
-
838
- public startEmulator ( info : IEmulatorInfo ) : Promise < void > {
839
- return Promise . resolve ( ) ;
840
- }
841
- }
842
-
843
819
export class AndroidResourcesMigrationServiceStub implements IAndroidResourcesMigrationService {
844
820
canMigrate ( platformString : string ) : boolean {
845
821
return true ;
0 commit comments