File tree Expand file tree Collapse file tree
gax-java/gax/src/main/java/com/google/api/gax/tracing Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -164,10 +164,6 @@ String rpcSystemName() {
164164 @ Nullable
165165 public abstract String urlDomain ();
166166
167- /** The url template of the request (e.g. /v1/{name}:access). */
168- @ Nullable
169- public abstract String urlTemplate ();
170-
171167 /** The destination resource name of the request (e.g. projects/p/locations/l/topics/t). */
172168 @ Nullable
173169 public abstract String destinationResourceName ();
@@ -282,9 +278,6 @@ ApiTracerContext merge(ApiTracerContext other) {
282278 if (!Strings .isNullOrEmpty (other .urlDomain ())) {
283279 builder .setUrlDomain (other .urlDomain ());
284280 }
285- if (other .urlTemplate () != null ) {
286- builder .setUrlTemplate (other .urlTemplate ());
287- }
288281 if (other .destinationResourceName () != null ) {
289282 builder .setDestinationResourceName (other .destinationResourceName ());
290283 }
@@ -323,8 +316,6 @@ public abstract static class Builder {
323316
324317 public abstract Builder setUrlDomain (@ Nullable String urlDomain );
325318
326- public abstract Builder setUrlTemplate (@ Nullable String urlTemplate );
327-
328319 public abstract Builder setDestinationResourceName (@ Nullable String destinationResourceName );
329320
330321 public abstract ApiTracerContext build ();
You can’t perform that action at this time.
0 commit comments