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

package io.sentry.internal.debugmeta;

import org.jetbrains.annotations.Nullable;
import java.util.Properties;
import java.util.List;
import org.jetbrains.annotations.ApiStatus;

@ApiStatus.Internal
public final class NoOpDebugMetaLoader implements IDebugMetaLoader
{
    private static final NoOpDebugMetaLoader instance;
    
    public static NoOpDebugMetaLoader getInstance() {
        return NoOpDebugMetaLoader.instance;
    }
    
    private NoOpDebugMetaLoader() {
    }
    
    @Nullable
    @Override
    public List<Properties> loadDebugMeta() {
        return null;
    }
    
    static {
        instance = new NoOpDebugMetaLoader();
    }
}
