Archived
1
This commit is contained in:
Kim Wittenburg
2019-02-01 22:59:01 +01:00
parent ba472864df
commit 0a485ff42a
82 changed files with 3975 additions and 1822 deletions

View File

@@ -0,0 +1,27 @@
//
// 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()
}
}