We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cdc850 commit 5a2d17cCopy full SHA for 5a2d17c
1 file changed
Tool/Sources/XcodeInspector/Apps/XcodeAppInstanceInspector.swift
@@ -408,7 +408,7 @@ private func isCompletionPanel(_ element: AXUIElement) -> Bool {
408
guard let group = element.firstChild(where: { $0.role == "AXGroup" }),
409
let scrollArea = group.firstChild(where: { $0.role == "AXScrollArea" }),
410
let list = scrollArea.firstChild(where: { $0.role == "AXOpaqueProviderGroup" }),
411
- let completion = list.children.first(where: { $0.value == "code completion" })
+ let _ = list.children.first(where: { $0.value == "code completion" })
412
else { return false }
413
return true
414
}()
0 commit comments