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

package io.sentry.util.thread;

import io.sentry.protocol.SentryThread;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.ApiStatus;

@ApiStatus.Internal
public final class NoOpThreadChecker implements IThreadChecker
{
    private static final NoOpThreadChecker instance;
    
    public static NoOpThreadChecker getInstance() {
        return NoOpThreadChecker.instance;
    }
    
    @Override
    public boolean isMainThread(final long threadId) {
        return false;
    }
    
    @Override
    public boolean isMainThread(@NotNull final Thread thread) {
        return false;
    }
    
    @Override
    public boolean isMainThread() {
        return false;
    }
    
    @Override
    public boolean isMainThread(@NotNull final SentryThread sentryThread) {
        return false;
    }
    
    @NotNull
    @Override
    public String getCurrentThreadName() {
        return "";
    }
    
    @Override
    public long currentThreadSystemId() {
        return 0L;
    }
    
    static {
        instance = new NoOpThreadChecker();
    }
}
