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

package io.sentry;

import java.io.IOException;
import io.sentry.protocol.profiling.SentryProfile;
import org.jetbrains.annotations.NotNull;

public final class NoOpProfileConverter implements IProfileConverter
{
    private static final NoOpProfileConverter instance;
    
    private NoOpProfileConverter() {
    }
    
    public static NoOpProfileConverter getInstance() {
        return NoOpProfileConverter.instance;
    }
    
    @NotNull
    @Override
    public SentryProfile convertFromFile(@NotNull final String jfrFilePath) throws IOException {
        return new SentryProfile();
    }
    
    static {
        instance = new NoOpProfileConverter();
    }
}
