Skip to content

Commit a9d1b3b

Browse files
committed
Remove calling of deprecated utils.ios.getter function
In NativeScript 5.4.0 utils.ios.getter function marked as deprecate.
1 parent 6e14305 commit a9d1b3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/localize.ios.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const getBundle = (function () {
88
let bundle = null;
99
return function () {
1010
if (bundle === null) {
11-
bundle = utils.ios.getter(NSBundle, NSBundle.mainBundle);
11+
bundle = NSBundle.mainBundle;
1212
}
1313
return bundle;
1414
};

0 commit comments

Comments
 (0)