Rabbit-R1/switch port/java/sources/io/sentry/internal/debugmeta/NoOpDebugMetaLoader.java

22 lines
544 B
Java
Raw Normal View History

2024-05-21 21:08:36 +00:00
package io.sentry.internal.debugmeta;
import java.util.List;
import java.util.Properties;
/* loaded from: classes3.dex */
public final class NoOpDebugMetaLoader implements IDebugMetaLoader {
private static final NoOpDebugMetaLoader instance = new NoOpDebugMetaLoader();
public static NoOpDebugMetaLoader getInstance() {
return instance;
}
@Override // io.sentry.internal.debugmeta.IDebugMetaLoader
public List<Properties> loadDebugMeta() {
return null;
}
private NoOpDebugMetaLoader() {
}
}