swiftlint fixes

This commit is contained in:
Francisco Gindre 2020-10-08 17:51:12 -03:00
parent 37a15bb93f
commit f0ed01bb92
1 changed files with 0 additions and 3 deletions

View File

@ -234,8 +234,6 @@ public class Initializer {
FileManager.default.isReadableFile(atPath: self.outputParamsURL.path)
}
func downloadParametersIfNeeded(result: @escaping (Result<Bool,Error>) -> Void) {
let spendParameterPresent = isSpendParameterPresent()
let outputParameterPresent = isOutputParameterPresent()
@ -248,7 +246,6 @@ public class Initializer {
let outputURL = self.outputParamsURL
let spendURL = self.spendParamsURL
if !outputParameterPresent {
SaplingParameterDownloader.downloadOutputParameter(outputURL) { outputResult in
switch outputResult {