File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
communication/src/main/java/datadog/communication/http Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -50,9 +50,12 @@ public final class OkHttpUtils {
50
50
51
51
private static final String DD_API_KEY = "DD-API-KEY" ;
52
52
53
- private static final String JAVA_VERSION = SystemProperties .getOrDefault ("java.version" , "unknown" );
54
- private static final String JAVA_VM_NAME = SystemProperties .getOrDefault ("java.vm.name" , "unknown" );
55
- private static final String JAVA_VM_VENDOR = SystemProperties .getOrDefault ("java.vm.vendor" , "unknown" );
53
+ private static final String JAVA_VERSION =
54
+ SystemProperties .getOrDefault ("java.version" , "unknown" );
55
+ private static final String JAVA_VM_NAME =
56
+ SystemProperties .getOrDefault ("java.vm.name" , "unknown" );
57
+ private static final String JAVA_VM_VENDOR =
58
+ SystemProperties .getOrDefault ("java.vm.vendor" , "unknown" );
56
59
57
60
public static OkHttpClient buildHttpClient (final HttpUrl url , final long timeoutMillis ) {
58
61
return buildHttpClient (url , null , null , timeoutMillis );
You can’t perform that action at this time.
0 commit comments