Run swiftformat

This commit is contained in:
Hamzah Malik 2023-05-26 14:24:39 +01:00
parent 3402510406
commit 49fd80cd87
Failed to extract signature
2 changed files with 9 additions and 9 deletions

View File

@ -589,7 +589,7 @@ public enum MetricsSystem {
var underlying: MetricsFactory {
return self.lock.withReaderLock {
return self._underlying
self._underlying
}
}
@ -736,7 +736,7 @@ internal final class AccumulatingRoundingFloatingPointCounter: FloatingPointCoun
self.fraction += fraction
// self.fraction may have cross an integer boundary, Split it
// and add any integer component.
let (integer, fraction) = integerAndFractionComponents(of: self.fraction)
let (integer, fraction) = self.integerAndFractionComponents(of: self.fraction)
increment += integer
self.fraction = fraction
// Increment the handler by the total integer component.

View File

@ -373,7 +373,7 @@ public final class TestMeter: TestMetric, MeterHandler, Equatable {
public func set(_ value: Double) {
self.lock.withLock {
// this may lose precision but good enough as an example
_values.append((Date(), Double(value)))
self._values.append((Date(), Double(value)))
}
}
@ -381,7 +381,7 @@ public final class TestMeter: TestMetric, MeterHandler, Equatable {
self.lock.withLock {
let lastValue = self._values.last?.1 ?? 0
let newValue = lastValue - amount
_values.append((Date(), Double(newValue)))
self._values.append((Date(), Double(newValue)))
}
}
@ -389,7 +389,7 @@ public final class TestMeter: TestMetric, MeterHandler, Equatable {
self.lock.withLock {
let lastValue = self._values.last?.1 ?? 0
let newValue = lastValue - amount
_values.append((Date(), Double(newValue)))
self._values.append((Date(), Double(newValue)))
}
}
@ -441,7 +441,7 @@ public final class TestRecorder: TestMetric, RecorderHandler, Equatable {
public func record(_ value: Double) {
self.lock.withLock {
// this may lose precision but good enough as an example
_values.append((Date(), Double(value)))
self._values.append((Date(), Double(value)))
}
}
@ -502,7 +502,7 @@ public final class TestTimer: TestMetric, TimerHandler, Equatable {
public func recordNanoseconds(_ duration: Int64) {
self.lock.withLock {
_values.append((Date(), duration))
self._values.append((Date(), duration))
}
}
@ -512,13 +512,13 @@ public final class TestTimer: TestMetric, TimerHandler, Equatable {
public var values: [Int64] {
return self.lock.withLock {
return self._values.map { $0.1 }
self._values.map { $0.1 }
}
}
public var last: (Date, Int64)? {
return self.lock.withLock {
return self._values.last
self._values.last
}
}