Add @SuppressWarnings to nullness errors detected by a newer version of the Checker Framework
PiperOrigin-RevId: 471137219
This commit is contained in:
parent
69714e5f8e
commit
1b389ebcf5
@ -66,6 +66,8 @@ public final class TimestampAdjuster {
|
|||||||
* Next sample timestamps for calling threads in shared mode when {@link #timestampOffsetUs} has
|
* Next sample timestamps for calling threads in shared mode when {@link #timestampOffsetUs} has
|
||||||
* not yet been set.
|
* not yet been set.
|
||||||
*/
|
*/
|
||||||
|
// incompatible type argument for type parameter T of ThreadLocal.
|
||||||
|
@SuppressWarnings("nullness:type.argument.type.incompatible")
|
||||||
private final ThreadLocal<Long> nextSampleTimestampUs;
|
private final ThreadLocal<Long> nextSampleTimestampUs;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -73,6 +75,8 @@ public final class TimestampAdjuster {
|
|||||||
* microseconds, or {@link #MODE_NO_OFFSET} if timestamps should not be offset, or {@link
|
* microseconds, or {@link #MODE_NO_OFFSET} if timestamps should not be offset, or {@link
|
||||||
* #MODE_SHARED} if the adjuster will be used in shared mode.
|
* #MODE_SHARED} if the adjuster will be used in shared mode.
|
||||||
*/
|
*/
|
||||||
|
// incompatible types in assignment.
|
||||||
|
@SuppressWarnings("nullness:assignment.type.incompatible")
|
||||||
public TimestampAdjuster(long firstSampleTimestampUs) {
|
public TimestampAdjuster(long firstSampleTimestampUs) {
|
||||||
nextSampleTimestampUs = new ThreadLocal<>();
|
nextSampleTimestampUs = new ThreadLocal<>();
|
||||||
reset(firstSampleTimestampUs);
|
reset(firstSampleTimestampUs);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user