Skip to content

Commit

Permalink
Lint repair
Browse files Browse the repository at this point in the history
  • Loading branch information
SMickelsn committed Dec 16, 2024
1 parent b3ad9d4 commit 5ab5f33
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ func formatStackFrame(frame: PLCrashReportStackFrameInfo, frameNum: Int, report:
// Extracts detail for one thread
func detailedThreadToStackFrames(report: PLCrashReport, thread: PLCrashReportThreadInfo) -> Dictionary<String, Any> {

var oneThread: [String:Any] = [:]
var oneThread: [String: Any] = [:]
var allStackFrames: Array <Any> = []

let threadNum = thread.threadNumber as NSNumber
Expand All @@ -243,7 +243,7 @@ func detailedThreadToStackFrames(report: PLCrashReport, thread: PLCrashReportThr

var frameNum = 0
while frameNum < thread.stackFrames.count {
var oneFrame: [String:Any] = [:]
var oneFrame: [String: Any] = [:]

let frame = thread.stackFrames[frameNum] as! PLCrashReportStackFrameInfo
let instructionPointer = frame.instructionPointer
Expand Down

0 comments on commit 5ab5f33

Please sign in to comment.