deliberate linting mistakes

This commit is contained in:
Ethan Pippin 2022-01-10 13:41:42 -07:00
parent 2fa8a11327
commit ca274bd206
2 changed files with 3 additions and 7 deletions

View File

@ -24,10 +24,8 @@ final class VideoPlayerViewModel: ViewModel {
// Manually kept state because VLCKit doesn't properly set "played"
// on the VLCMediaPlayer object
@Published
var playerState: VLCMediaPlayerState = .buffering
@Published
var leftLabelText: String = "--:--"
@Published var playerState: VLCMediaPlayerState = .buffering
@Published var leftLabelText: String = "--:--"
@Published
var rightLabelText: String = "--:--"
@Published

View File

@ -13,9 +13,7 @@ import UIKit
class AppDelegate: NSObject, UIApplicationDelegate {
static var orientationLock = UIInterfaceOrientationMask.all
func application(_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil) -> Bool
{
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil) -> Bool {
// Lazily initialize datastack
_ = SwiftfinStore.dataStack