File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 17
17
<key >CFBundlePackageType </key >
18
18
<string >APPL </string >
19
19
<key >CFBundleShortVersionString </key >
20
- <string >1.0.7 </string >
20
+ <string >1.0.8 </string >
21
21
<key >CFBundleSignature </key >
22
22
<string >???? </string >
23
23
<key >CFBundleVersion </key >
Original file line number Diff line number Diff line change @@ -51,9 +51,9 @@ extension LogProcessorProtocol {
51
51
let range = NSMakeRange ( 0 , ( text as NSString ) . length)
52
52
guard let match = regex. firstMatch ( in: text, options: [ ] , range: range) else { continue }
53
53
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 ) ]
55
55
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 ) ... ] )
57
57
if var rawMeasure = rawMeasures [ value] {
58
58
rawMeasure. time += time
59
59
rawMeasure. references += 1
You can’t perform that action at this time.
0 commit comments