make MetricSystem factory property public

motivation: make it possible to create extensions that want to expose specific implementations  

changes: make MetricSystem factory property public
This commit is contained in:
Jari (LotU) 2019-03-31 14:36:36 +02:00 committed by tomer doron
parent b24e6b2fb3
commit 20b998220e
1 changed files with 1 additions and 1 deletions

View File

@ -189,7 +189,7 @@ public enum MetricsSystem {
}
}
internal static var factory: MetricsFactory {
public static var factory: MetricsFactory {
return self.lock.withReaderLock { self._factory }
}
}