Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ public final class TimeStamp implements Parcelable {
@NonNull public final Integer nanos;

/** Clock, package-private for testing. */
@SuppressWarnings("AndroidJdkLibsChecker")
static Clock clock = null;

/** Constructor to create a {@link TimeStamp}. */
Expand Down Expand Up @@ -89,7 +88,6 @@ public TimeStamp[] newArray(int size) {
};

@TargetApi(Build.VERSION_CODES.O)
@SuppressWarnings("AndroidJdkLibsChecker")
private static TimeStamp modernNow() {
if (clock == null) {
clock = Clock.systemUTC();
Expand Down
Loading