File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1717 <key >CFBundlePackageType </key >
1818 <string >APPL </string >
1919 <key >CFBundleShortVersionString </key >
20- <string >1.0.7 </string >
20+ <string >1.0.8 </string >
2121 <key >CFBundleSignature </key >
2222 <string >???? </string >
2323 <key >CFBundleVersion </key >
Original file line number Diff line number Diff line change @@ -51,9 +51,9 @@ extension LogProcessorProtocol {
5151 let range = NSMakeRange ( 0 , ( text as NSString ) . length)
5252 guard let match = regex. firstMatch ( in: text, options: [ ] , range: range) else { continue }
5353
54- let timeString = text [ ... text. index ( text. startIndex, offsetBy: match. range. length - 4 ) ]
54+ let timeString = text [ ..< text. index ( text. startIndex, offsetBy: match. range. length - 4 ) ]
5555 if let time = Double ( timeString) {
56- let value = String ( text [ ... text. index ( text. startIndex, offsetBy: match. range. length - 1 ) ] )
56+ let value = String ( text [ text. index ( text. startIndex, offsetBy: match. range. length - 1 ) ... ] )
5757 if var rawMeasure = rawMeasures [ value] {
5858 rawMeasure. time += time
5959 rawMeasure. references += 1
You can’t perform that action at this time.
0 commit comments