From 36e7c1fd05cde72fd88a8cf054ee506837fd63b6 Mon Sep 17 00:00:00 2001 From: codefactor-io Date: Thu, 18 Jan 2024 18:16:30 +0000 Subject: [PATCH] [CodeFactor] Apply fixes --- Sources/IPSWDownloads/Data.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/IPSWDownloads/Data.swift b/Sources/IPSWDownloads/Data.swift index 2b1a51f..2f61a4b 100644 --- a/Sources/IPSWDownloads/Data.swift +++ b/Sources/IPSWDownloads/Data.swift @@ -45,12 +45,12 @@ extension Data { self = data } - + internal init?(hexString: String, emptyIsNil: Bool) throws { if emptyIsNil, hexString.isEmpty { return nil } - + try self.init(hexString: hexString) } }