Rabbit-R1/android (non root)/java/sources/io/sentry/config/FilesystemPropertiesLoader.java
2024-05-21 17:08:36 -04:00

41 lines
1.3 KiB
Java

package io.sentry.config;
import io.sentry.ILogger;
import io.sentry.SentryLevel;
import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.Properties;
/* loaded from: classes3.dex */
final class FilesystemPropertiesLoader implements PropertiesLoader {
private final String filePath;
private final ILogger logger;
public FilesystemPropertiesLoader(String str, ILogger iLogger) {
this.filePath = str;
this.logger = iLogger;
}
@Override // io.sentry.config.PropertiesLoader
public Properties load() {
try {
File file = new File(this.filePath);
if (!file.isFile() || !file.canRead()) {
return null;
}
BufferedInputStream bufferedInputStream = new BufferedInputStream(new FileInputStream(file));
try {
Properties properties = new Properties();
properties.load(bufferedInputStream);
bufferedInputStream.close();
return properties;
} finally {
}
} catch (IOException e) {
this.logger.log(SentryLevel.ERROR, e, "Failed to load Sentry configuration from file: %s", this.filePath);
return null;
}
}
}