Skip to content

Commit 15f2b41

Browse files
jcanizalesmziccard
authored andcommitted
---
yaml --- r: 7603 b: refs/heads/tswast-patch-1 c: f50a31f h: refs/heads/master i: 7601: bed224a 7599: 7a1045c
1 parent cdf50cb commit 15f2b41

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ refs/tags/v0.18.0: 9d193c4c4b9d1c6f21515dd8e50836b9194ec9bb
5757
refs/tags/v0.19.0: e67b56e4d8dad5f9a7b38c9b2107c23c828f2ed5
5858
refs/tags/v0.20.0: 839f7fb7156535146aa1cb2c5aadd8d375d854e8
5959
refs/tags/v0.20.1: 370471f437f1f4f68a11e068df5cd6bf39edb1fa
60-
refs/heads/tswast-patch-1: e973d60f1ded1e874b0e2b15c0ac932a58a2a915
60+
refs/heads/tswast-patch-1: f50a31fbf57d5646ea69069cd1378446e89ccbc8
6161
refs/heads/pubsub-streaming-pull: 19262b752ee874eb2ca3b950eb2aef44d5a5267b

branches/tswast-patch-1/google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/InsertAllRequest.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public static class RowToInsert implements Serializable {
7676
private final String id;
7777
private final Map<String, Object> content;
7878

79-
RowToInsert(String id, Map<String, Object> content) {
79+
RowToInsert(String id, Map<String, ?> content) {
8080
this.id = id;
8181
this.content = ImmutableMap.copyOf(content);
8282
}
@@ -125,7 +125,7 @@ public boolean equals(Object obj) {
125125
* @param id id of the row, used to identify duplicates
126126
* @param content the actual content of the row
127127
*/
128-
public static RowToInsert of(String id, Map<String, Object> content) {
128+
public static RowToInsert of(String id, Map<String, ?> content) {
129129
return new RowToInsert(checkNotNull(id), checkNotNull(content));
130130
}
131131

@@ -135,7 +135,7 @@ public static RowToInsert of(String id, Map<String, Object> content) {
135135
*
136136
* @param content the actual content of the row
137137
*/
138-
public static RowToInsert of(Map<String, Object> content) {
138+
public static RowToInsert of(Map<String, ?> content) {
139139
return new RowToInsert(null, checkNotNull(content));
140140
}
141141
}
@@ -196,7 +196,7 @@ public Builder addRow(RowToInsert rowToInsert) {
196196
* builder.addRow("rowId", rowContent);
197197
* }</pre>
198198
*/
199-
public Builder addRow(String id, Map<String, Object> content) {
199+
public Builder addRow(String id, Map<String, ?> content) {
200200
addRow(new RowToInsert(id, content));
201201
return this;
202202
}
@@ -219,7 +219,7 @@ public Builder addRow(String id, Map<String, Object> content) {
219219
* builder.addRow(rowContent);
220220
* }</pre>
221221
*/
222-
public Builder addRow(Map<String, Object> content) {
222+
public Builder addRow(Map<String, ?> content) {
223223
addRow(new RowToInsert(null, content));
224224
return this;
225225
}

0 commit comments

Comments
 (0)