This repository was archived by the owner on Mar 23, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/spi/v2 Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3131import java .util .Collections ;
3232import java .util .HashSet ;
3333import java .util .Set ;
34- import org .jspecify .annotations .Nullable ;
3534
3635/**
3736 * HttpRequestInitializer that wraps a delegate initializer, intercepts all HTTP requests, adds
@@ -63,10 +62,10 @@ public class HttpTracingRequestInitializer implements HttpRequestInitializer {
6362
6463 private final HttpRequestInitializer delegate ;
6564 private final Tracer tracer ;
66- private final @ Nullable String clientRootUrl ;
65+ private final String clientRootUrl ;
6766
6867 public HttpTracingRequestInitializer (
69- HttpRequestInitializer delegate , Tracer tracer , @ Nullable String clientRootUrl ) {
68+ HttpRequestInitializer delegate , Tracer tracer , String clientRootUrl ) {
7069 this .delegate = delegate ;
7170 this .tracer = tracer ;
7271 this .clientRootUrl = clientRootUrl ;
@@ -266,7 +265,7 @@ static String sanitizeUrlFull(String url) {
266265 }
267266 }
268267
269- private static String redactSensitiveQueryValues (@ Nullable String rawQuery ) {
268+ private static String redactSensitiveQueryValues (String rawQuery ) {
270269 if (rawQuery == null || rawQuery .isEmpty ()) {
271270 return rawQuery ;
272271 }
You can’t perform that action at this time.
0 commit comments