Skip to content

Commit be2ee2a

Browse files
committed
chore: remove unnecessary code
1 parent 4b69bb3 commit be2ee2a

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
@@ -592,9 +592,6 @@ interface IIOSExtensionsService {
592592
removeExtensions(options: IRemoveExtensionsOptions): void;
593593
}
594594

595-
interface IIOSNativeTargetServiceBase {
596-
}
597-
598595
/**
599596
* Describes a service used to add and remove iOS extension
600597
*/

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)