Skip to content

Commit 172fe8a

Browse files
committed
Fix warnings
1 parent 13b7515 commit 172fe8a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ProvisionQLCore/Sources/AppArchiveParser.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ private extension AppArchiveParser {
3838
let plist = try PlistParser.parse(data: infoPlistData)
3939

4040
// Parse app information
41-
var appInfo = PlistParser.extractAppInfo(from: plist)
41+
let appInfo = PlistParser.extractAppInfo(from: plist)
4242

4343
// Extract app icon using the dedicated IconExtractor
4444
let icon = try? IconExtractor.extractIcon(from: url)
@@ -83,7 +83,7 @@ private extension AppArchiveParser {
8383
let infoPlistURL = appBundleURL.appendingPathComponent("Info.plist")
8484
let plist = try PlistParser.parse(url: infoPlistURL)
8585

86-
var appInfo = PlistParser.extractAppInfo(from: plist)
86+
let appInfo = PlistParser.extractAppInfo(from: plist)
8787

8888
let icon = try? IconExtractor.extractIcon(from: url)
8989

@@ -118,7 +118,7 @@ private extension AppArchiveParser {
118118
let infoPlistURL = url.appendingPathComponent("Info.plist")
119119
let plist = try PlistParser.parse(url: infoPlistURL)
120120

121-
var appInfo = PlistParser.extractAppInfo(from: plist)
121+
let appInfo = PlistParser.extractAppInfo(from: plist)
122122

123123
let icon = try? IconExtractor.extractIcon(from: url)
124124

0 commit comments

Comments
 (0)