@@ -52,15 +52,15 @@ public class InsertAllRequest implements Serializable {
5252 * id used by BigQuery to detect duplicate insertion requests on a best-effort basis.
5353 *
5454 * <p>Example usage of creating a row to insert:
55- * <pre> {@code
56- * List<Long> repeatedFieldValue = Arrays.asList(1L, 2L);
57- * Map<String, Object> recordContent = new HashMap<String, Object>();
58- * recordContent.put("subfieldName1", "value");
59- * recordContent.put("subfieldName2", repeatedFieldValue);
60- * Map<String, Object> rowContent = new HashMap<String, Object>();
61- * rowContent.put("fieldName1", true);
62- * rowContent.put("fieldName2", recordContent);
63- * RowToInsert row = new RowToInsert("rowId", rowContent);
55+ * <pre> {@code
56+ * List<Long> repeatedFieldValue = Arrays.asList(1L, 2L);
57+ * Map<String, Object> recordContent = new HashMap<String, Object>();
58+ * recordContent.put("subfieldName1", "value");
59+ * recordContent.put("subfieldName2", repeatedFieldValue);
60+ * Map<String, Object> rowContent = new HashMap<String, Object>();
61+ * rowContent.put("fieldName1", true);
62+ * rowContent.put("fieldName2", recordContent);
63+ * RowToInsert row = new RowToInsert("rowId", rowContent);
6464 * }</pre>
6565 *
6666 * @see <a href ="https://cloud.google.com/bigquery/streaming-data-into-bigquery#dataconsistency">
@@ -177,16 +177,16 @@ public Builder addRow(RowToInsert rowToInsert) {
177177 * Adds a row to be inserted with associated id.
178178 *
179179 * <p>Example usage of adding a row with associated id:
180- * <pre> {@code
181- * InsertAllRequest.Builder builder = InsertAllRequest.builder(tableId);
182- * List<Long> repeatedFieldValue = Arrays.asList(1L, 2L);
183- * Map<String, Object> recordContent = new HashMap<String, Object>();
184- * recordContent.put("subfieldName1", "value");
185- * recordContent.put("subfieldName2", repeatedFieldValue);
186- * Map<String, Object> rowContent = new HashMap<String, Object>();
187- * rowContent.put("fieldName1", true);
188- * rowContent.put("fieldName2", recordContent);
189- * builder.addRow("rowId", rowContent);
180+ * <pre> {@code
181+ * InsertAllRequest.Builder builder = InsertAllRequest.builder(tableId);
182+ * List<Long> repeatedFieldValue = Arrays.asList(1L, 2L);
183+ * Map<String, Object> recordContent = new HashMap<String, Object>();
184+ * recordContent.put("subfieldName1", "value");
185+ * recordContent.put("subfieldName2", repeatedFieldValue);
186+ * Map<String, Object> rowContent = new HashMap<String, Object>();
187+ * rowContent.put("fieldName1", true);
188+ * rowContent.put("fieldName2", recordContent);
189+ * builder.addRow("rowId", rowContent);
190190 * }</pre>
191191 */
192192 public Builder addRow (String id , Map <String , Object > content ) {
@@ -198,16 +198,16 @@ public Builder addRow(String id, Map<String, Object> content) {
198198 * Adds a row to be inserted without an associated id.
199199 *
200200 * <p>Example usage of adding a row without an associated id:
201- * <pre> {@code
202- * InsertAllRequest.Builder builder = InsertAllRequest.builder(tableId);
203- * List<Long> repeatedFieldValue = Arrays.asList(1L, 2L);
204- * Map<String, Object> recordContent = new HashMap<String, Object>();
205- * recordContent.put("subfieldName1", "value");
206- * recordContent.put("subfieldName2", repeatedFieldValue);
207- * Map<String, Object> rowContent = new HashMap<String, Object>();
208- * rowContent.put("fieldName1", true);
209- * rowContent.put("fieldName2", recordContent);
210- * builder.addRow(rowContent);
201+ * <pre> {@code
202+ * InsertAllRequest.Builder builder = InsertAllRequest.builder(tableId);
203+ * List<Long> repeatedFieldValue = Arrays.asList(1L, 2L);
204+ * Map<String, Object> recordContent = new HashMap<String, Object>();
205+ * recordContent.put("subfieldName1", "value");
206+ * recordContent.put("subfieldName2", repeatedFieldValue);
207+ * Map<String, Object> rowContent = new HashMap<String, Object>();
208+ * rowContent.put("fieldName1", true);
209+ * rowContent.put("fieldName2", recordContent);
210+ * builder.addRow(rowContent);
211211 * }</pre>
212212 */
213213 public Builder addRow (Map <String , Object > content ) {
0 commit comments