package androidx.work; import androidx.annotation.RestrictTo; @RestrictTo({RestrictTo.Scope.LIBRARY_GROUP}) /* loaded from: classes.dex */ public class SystemClock implements Clock { @Override // androidx.work.Clock public long currentTimeMillis() { return System.currentTimeMillis(); } }