Skip to content

Commit d1d886b

Browse files
committed
Removing the finals, since the class is now final
1 parent c0b3f77 commit d1d886b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dd-java-agent/src/main/java/datadog/trace/bootstrap/SystemUtils.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,27 @@
33
public 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) {

0 commit comments

Comments
 (0)