Skip to content

Commit b05bb92

Browse files
vadymv-mendixYogendraShelke
authored andcommitted
refactor: remove override keyword from application lifecycle methods in AppDelegate
1 parent fdac9d8 commit b05bb92

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

ios/AppDelegate.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,19 +49,19 @@ class AppDelegate: ReactAppProvider {
4949
return true
5050
}
5151

52-
override func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool {
52+
func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool {
5353
return MendixAppDelegate.application(app, openURL: url, options: options)
5454
}
5555

5656
func getWarningFilterValue() -> WarningsFilter {
5757
return .none
5858
}
5959

60-
override func applicationWillTerminate(_ application: UIApplication) {
60+
func applicationWillTerminate(_ application: UIApplication) {
6161
SessionCookieStore.persist() // iOS does not persist session cookies across app restarts, this helps persisting session cookies to match behaviour with Android
6262
}
6363

64-
override func applicationDidEnterBackground(_ application: UIApplication) {
64+
func applicationDidEnterBackground(_ application: UIApplication) {
6565
SessionCookieStore.persist() // iOS does not persist session cookies across app restarts, this helps persisting session cookies to match behaviour with Android
6666
}
6767
}

0 commit comments

Comments
 (0)