Skip to content

Commit 5b34894

Browse files
committed
chore: remove unnecessary code
1 parent a6717d8 commit 5b34894

File tree

4 files changed

+1
-9
lines changed

4 files changed

+1
-9
lines changed

lib/common/definitions/mobile.d.ts

-4
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,6 @@ declare module Mobile {
8181
imageIdentifier?: string;
8282
}
8383

84-
interface IIOSWatchSimulatorDevice extends IDeviceInfo{
85-
86-
}
87-
8884
interface IDeviceError extends Error, IDeviceIdentifier { }
8985

9086
interface IDeviceIdentifier {

lib/common/mobile/ios/simulator/ios-simulator-device.ts

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ export class IOSSimulator extends IOSDeviceBase implements Mobile.IiOSDevice {
1010
public applicationManager: Mobile.IDeviceApplicationManager;
1111
public fileSystem: Mobile.IDeviceFileSystem;
1212
public deviceInfo: Mobile.IDeviceInfo;
13-
public watchSimulator: Mobile.IIOSWatchSimulatorDevice;
1413

1514
constructor(private simulator: Mobile.IiSimDevice,
1615
private $devicePlatformsConstants: Mobile.IDevicePlatformsConstants,

lib/definitions/project.d.ts

-3
Original file line numberDiff line numberDiff line change
@@ -580,9 +580,6 @@ interface IIOSExtensionsService {
580580
removeExtensions(options: IRemoveExtensionsOptions): void;
581581
}
582582

583-
interface IIOSNativeTargetServiceBase {
584-
}
585-
586583
/**
587584
* Describes a service used to add and remove iOS extension
588585
*/

lib/services/ios-native-target-service-base.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export interface IXcodeTargetBuildConfigurationProperty {
1111
buildNames?: BuildNames[];
1212
}
1313

14-
export abstract class NativeTargetServiceBase implements IIOSNativeTargetServiceBase {
14+
export abstract class NativeTargetServiceBase {
1515
constructor(protected $fs: IFileSystem,
1616
protected $pbxprojDomXcode: IPbxprojDomXcode,
1717
protected $xcode: IXcode) {

0 commit comments

Comments
 (0)