Skip to content

Commit e04f01d

Browse files
Remove usage of utils.ios.getter #21
1 parent 39e7ecb commit e04f01d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/TNSLocalPackage.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export class TNSLocalPackage implements ILocalPackage {
8484
let buildTime: string;
8585
// Note that this 'if' hardly justifies subclassing so we're not
8686
if (isIOS) {
87-
const plist = utils.ios.getter(NSBundle, NSBundle.mainBundle).pathForResourceOfType(null, "plist");
87+
const plist = NSBundle.mainBundle.pathForResourceOfType(null, "plist");
8888
const fileDate = new fsa.FileSystemAccess().getLastModified(plist);
8989
buildTime = "" + fileDate.getTime();
9090
} else {

0 commit comments

Comments
 (0)