22 lines
519 B
Java
22 lines
519 B
Java
package com.google.firebase.installations.time;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class SystemClock implements Clock {
|
|
private static SystemClock singleton;
|
|
|
|
private SystemClock() {
|
|
}
|
|
|
|
public static SystemClock getInstance() {
|
|
if (singleton == null) {
|
|
singleton = new SystemClock();
|
|
}
|
|
return singleton;
|
|
}
|
|
|
|
@Override // com.google.firebase.installations.time.Clock
|
|
public long currentTimeMillis() {
|
|
return System.currentTimeMillis();
|
|
}
|
|
}
|