Skip to content

Commit a04a699

Browse files
jcanizalesmziccard
authored andcommitted
---
yaml --- r: 5129 b: refs/heads/master c: f50a31f h: refs/heads/master i: 5127: 49f75b7
1 parent 6c50c88 commit a04a699

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
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: e973d60f1ded1e874b0e2b15c0ac932a58a2a915
2+
refs/heads/master: f50a31fbf57d5646ea69069cd1378446e89ccbc8
33
refs/heads/travis: e21ee7b88a5edc3f3d8c71f90c3fc32abf7e8dd6
44
refs/heads/gh-pages: 7406918e071dd2c5677a638ae2a06e7592b6542c
55
refs/heads/pubsub-alpha: d6bbd32eed6cb48cda8d6798ee70ddd6bfc1f07d

trunk/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)