Skip to content

Commit

Permalink
Remove unneeded spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackstone92 committed Sep 20, 2024
1 parent 262cc92 commit 914f4e1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 0 additions & 2 deletions Sample Projects/RxSwift 6 App/RxSwift 6 App/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import UIKit

@main
class AppDelegate: UIResponder, UIApplicationDelegate {

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
return true
Expand All @@ -29,4 +28,3 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
// Use this method to release any resources that were specific to the discarded scenes, as they will not return.
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import UIKit
import RxSwift

class SceneDelegate: UIResponder, UIWindowSceneDelegate {

var window: UIWindow?

func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
Expand All @@ -20,6 +19,7 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate {

let viewModel = ViewModel(
client: .live(session: .shared), // change to `.succeeding`, `.failing` or `.delayed` for stubbed responses
randomNumberGenerator: { Int.random(in: 0 ... 100) },
mainScheduler: MainScheduler.asyncInstance
)

Expand Down Expand Up @@ -61,4 +61,3 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate {
// to restore the scene back to its current state.
}
}

0 comments on commit 914f4e1

Please sign in to comment.