File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
dd-java-agent/src/main/java/datadog/trace/bootstrap Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 33public final class SystemUtils {
44 private SystemUtils () {}
55
6- public static final String tryGetEnv (String envVar ) {
6+ public static String tryGetEnv (String envVar ) {
77 return getEnvOrDefault (envVar , null );
88 }
99
10- public static final String getEnvOrDefault (String envVar , String defaultValue ) {
10+ public static String getEnvOrDefault (String envVar , String defaultValue ) {
1111 try {
1212 return System .getenv (envVar );
1313 } catch (SecurityException e ) {
1414 return defaultValue ;
1515 }
1616 }
1717
18- public static final String tryGetProperty (String property ) {
18+ public static String tryGetProperty (String property ) {
1919 try {
2020 return System .getProperty (property );
2121 } catch (SecurityException e ) {
2222 return null ;
2323 }
2424 }
2525
26- public static final String getPropertyOrDefault (String property , String defaultValue ) {
26+ public static String getPropertyOrDefault (String property , String defaultValue ) {
2727 try {
2828 return System .getProperty (property , defaultValue );
2929 } catch (SecurityException e ) {
You can’t perform that action at this time.
0 commit comments