This commit is contained in:
Simon Kågedal Reimer 2019-05-04 20:21:44 +02:00
parent a6052d167d
commit 3b3b421fef
1 changed files with 1 additions and 6 deletions

View File

@ -18,11 +18,6 @@ struct Simctl {
throw Error.listDevices(errorOutput: errorOutput) throw Error.listDevices(errorOutput: errorOutput)
} }
switch result.output { return Data(try result.output.dematerialize())
case .success(let bytes):
return Data(bytes)
case .failure(let error):
throw error
}
} }
} }