what-the-bank/sources/com/google/firebase/installations/time/SystemClock.java

22 lines
519 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
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();
}
}