Archived
1
This repository has been archived on 2020-06-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
tagtunes/TagTunes/LookupPreparationOperation.swift
Kim Wittenburg 0a485ff42a Stuff…
2019-02-01 22:59:01 +01:00

28 lines
482 B
Swift
Executable File

//
// LookupPreparationOperation.swift
// TagTunes
//
// Created by Kim Wittenburg on 12.04.16.
// Copyright © 2016 Kim Wittenburg. All rights reserved.
//
import AppKitPlus
// TODO: Documentation
class LookupPreparationOperation: Operation {
let track: TagTunesTrack
init(track: TagTunesTrack) {
self.track = track
}
override func execute() {
// TODO: Is it ok to block the thread?
track.updateTrackID()
finish()
}
}