// 
// Decompiled by Procyon v0.6.0
// 

package io.sentry;

import org.jetbrains.annotations.NotNull;
import java.time.Instant;

public final class SentryInstantDate extends SentryDate
{
    @NotNull
    private final Instant date;
    
    public SentryInstantDate() {
        this(Instant.now());
    }
    
    public SentryInstantDate(@NotNull final Instant date) {
        this.date = date;
    }
    
    @Override
    public long nanoTimestamp() {
        return DateUtils.secondsToNanos(this.date.getEpochSecond()) + this.date.getNano();
    }
}
