We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 908a72d + ac7b387 commit abfc789Copy full SHA for abfc789
internal-api/src/main/java/datadog/trace/bootstrap/config/provider/StableConfigSource.java
@@ -59,7 +59,7 @@ public final class StableConfigSource extends ConfigProvider.Source {
59
// that way we don't need to call readFromYaml twice;
60
// if we see that said cached map is already not null by the name the StableConfigurationSource
61
// constructor is called, we can skip calling it again.
62
- public static HashMap<String, Object> readYamlFromFile(String filePath) {
+ public static Map<String, Object> readYamlFromFile(String filePath) {
63
File file = new File(filePath);
64
if (!file.exists()) {
65
log.debug(
0 commit comments