File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
javaagent-tooling/src/main/java/io/opentelemetry/javaagent/tooling/config Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change 18
18
import java .util .Map ;
19
19
import java .util .Properties ;
20
20
import java .util .stream .Collectors ;
21
- import javax .annotation .Nullable ;
22
21
23
22
final class ConfigurationFile {
24
23
25
24
static final String CONFIGURATION_FILE_PROPERTY = "otel.javaagent.configuration-file" ;
26
25
27
26
private static Map <String , String > configFileContents ;
28
27
29
- // this class is used early, and must not use logging in most of its methods
30
- // in case any file loading/parsing error occurs, we save the error message and log it later, when
31
- // the logging subsystem is initialized
32
- @ Nullable private static String fileLoadErrorMessage ;
33
-
34
28
static Map <String , String > getProperties () {
35
29
if (configFileContents == null ) {
36
30
configFileContents = loadConfigFile ();
You can’t perform that action at this time.
0 commit comments