Fix warnings
This commit is contained in:
parent
e28bee804f
commit
02d2350b29
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
import Foundation
|
import Foundation
|
||||||
|
|
||||||
protocol Generator: class {
|
protocol Generator: AnyObject {
|
||||||
static var defaultExtension: String { get }
|
static var defaultExtension: String { get }
|
||||||
static var option: String { get }
|
static var option: String { get }
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ protocol Generator: class {
|
||||||
func generate(data: [String: ColorDef]) throws -> FileWrapper
|
func generate(data: [String: ColorDef]) throws -> FileWrapper
|
||||||
}
|
}
|
||||||
|
|
||||||
protocol Context: class {
|
protocol Context: AnyObject {
|
||||||
var prefix: String? { get }
|
var prefix: String? { get }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue