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

package io.sentry;

import org.jetbrains.annotations.NotNull;

public final class NoOpSocketTagger implements ISocketTagger
{
    private static final NoOpSocketTagger instance;
    
    private NoOpSocketTagger() {
    }
    
    @NotNull
    public static ISocketTagger getInstance() {
        return NoOpSocketTagger.instance;
    }
    
    @Override
    public void tagSockets() {
    }
    
    @Override
    public void untagSockets() {
    }
    
    static {
        instance = new NoOpSocketTagger();
    }
}
