Skip to content

Commit f1b9833

Browse files
authored
Adds a map overload for addAttributes
1 parent b5ec4cb commit f1b9833

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gax-java/gax/src/main/java/com/google/api/gax/tracing/MetricsTracer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ public void addAttributes(String key, String value) {
251251
* Gax.
252252
*/
253253
public void addAttributes(Map<String, String> attributes) {
254-
attributes.putAll(attributes);
254+
this.attributes.putAll(attributes);
255255
};
256256

257257
@VisibleForTesting

0 commit comments

Comments
 (0)