File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Tests/HaystackServerTests Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ class ZincTokenizer {
1818 try consume ( )
1919 }
2020
21- public convenience init ( _ string: String ) throws {
21+ convenience init ( _ string: String ) throws {
2222 guard let data = string. data ( using: . utf8) else {
2323 throw ZincTokenizerError . inputIsNotUtf8
2424 }
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ public class Client: API {
2222 let fetcher : Fetcher
2323
2424 /// Set when `open` is called.
25- private var authToken : String ? = nil
25+ private var authToken : String ?
2626
2727 private let jsonEncoder = JSONEncoder ( )
2828 private let jsonDecoder = JSONDecoder ( )
Original file line number Diff line number Diff line change @@ -579,7 +579,7 @@ actor InMemoryWatchStore: WatchStore {
579579 watches [ watchId] = nil
580580 }
581581
582- public struct Watch : Hashable {
582+ struct Watch : Hashable {
583583 let id : String
584584 var ids : [ Haystack . Ref ]
585585 let lease : Haystack . Number
You can’t perform that action at this time.
0 commit comments