deliberate linting mistakes
This commit is contained in:
parent
2fa8a11327
commit
ca274bd206
|
@ -24,10 +24,8 @@ final class VideoPlayerViewModel: ViewModel {
|
||||||
|
|
||||||
// Manually kept state because VLCKit doesn't properly set "played"
|
// Manually kept state because VLCKit doesn't properly set "played"
|
||||||
// on the VLCMediaPlayer object
|
// on the VLCMediaPlayer object
|
||||||
@Published
|
@Published var playerState: VLCMediaPlayerState = .buffering
|
||||||
var playerState: VLCMediaPlayerState = .buffering
|
@Published var leftLabelText: String = "--:--"
|
||||||
@Published
|
|
||||||
var leftLabelText: String = "--:--"
|
|
||||||
@Published
|
@Published
|
||||||
var rightLabelText: String = "--:--"
|
var rightLabelText: String = "--:--"
|
||||||
@Published
|
@Published
|
||||||
|
|
|
@ -13,9 +13,7 @@ import UIKit
|
||||||
class AppDelegate: NSObject, UIApplicationDelegate {
|
class AppDelegate: NSObject, UIApplicationDelegate {
|
||||||
static var orientationLock = UIInterfaceOrientationMask.all
|
static var orientationLock = UIInterfaceOrientationMask.all
|
||||||
|
|
||||||
func application(_ application: UIApplication,
|
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil) -> Bool {
|
||||||
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil) -> Bool
|
|
||||||
{
|
|
||||||
|
|
||||||
// Lazily initialize datastack
|
// Lazily initialize datastack
|
||||||
_ = SwiftfinStore.dataStack
|
_ = SwiftfinStore.dataStack
|
||||||
|
|
Loading…
Reference in New Issue