@@ -155,9 +155,9 @@ public QueryResult nextPage() {
155155 }
156156
157157 @ Override
158- public Dataset create (DatasetInfo dataset , DatasetOption ... options ) {
158+ public Dataset create (DatasetInfo datasetInfo , DatasetOption ... options ) {
159159 final com .google .api .services .bigquery .model .Dataset datasetPb =
160- dataset .setProjectId (options ().projectId ()).toPb ();
160+ datasetInfo .setProjectId (options ().projectId ()).toPb ();
161161 final Map <BigQueryRpc .Option , ?> optionsMap = optionMap (options );
162162 try {
163163 return Dataset .fromPb (this ,
@@ -173,9 +173,9 @@ public com.google.api.services.bigquery.model.Dataset call() {
173173 }
174174
175175 @ Override
176- public Table create (TableInfo table , TableOption ... options ) {
176+ public Table create (TableInfo tableInfo , TableOption ... options ) {
177177 final com .google .api .services .bigquery .model .Table tablePb =
178- table .setProjectId (options ().projectId ()).toPb ();
178+ tableInfo .setProjectId (options ().projectId ()).toPb ();
179179 final Map <BigQueryRpc .Option , ?> optionsMap = optionMap (options );
180180 try {
181181 return Table .fromPb (this ,
@@ -191,9 +191,9 @@ public com.google.api.services.bigquery.model.Table call() {
191191 }
192192
193193 @ Override
194- public Job create (JobInfo job , JobOption ... options ) {
194+ public Job create (JobInfo jobInfo , JobOption ... options ) {
195195 final com .google .api .services .bigquery .model .Job jobPb =
196- job .setProjectId (options ().projectId ()).toPb ();
196+ jobInfo .setProjectId (options ().projectId ()).toPb ();
197197 final Map <BigQueryRpc .Option , ?> optionsMap = optionMap (options );
198198 try {
199199 return Job .fromPb (this ,
@@ -312,9 +312,9 @@ public Boolean call() {
312312 }
313313
314314 @ Override
315- public Dataset update (DatasetInfo dataset , DatasetOption ... options ) {
315+ public Dataset update (DatasetInfo datasetInfo , DatasetOption ... options ) {
316316 final com .google .api .services .bigquery .model .Dataset datasetPb =
317- dataset .setProjectId (options ().projectId ()).toPb ();
317+ datasetInfo .setProjectId (options ().projectId ()).toPb ();
318318 final Map <BigQueryRpc .Option , ?> optionsMap = optionMap (options );
319319 try {
320320 return Dataset .fromPb (this ,
@@ -330,9 +330,9 @@ public com.google.api.services.bigquery.model.Dataset call() {
330330 }
331331
332332 @ Override
333- public Table update (TableInfo table , TableOption ... options ) {
333+ public Table update (TableInfo tableInfo , TableOption ... options ) {
334334 final com .google .api .services .bigquery .model .Table tablePb =
335- table .setProjectId (options ().projectId ()).toPb ();
335+ tableInfo .setProjectId (options ().projectId ()).toPb ();
336336 final Map <BigQueryRpc .Option , ?> optionsMap = optionMap (options );
337337 try {
338338 return Table .fromPb (this ,
@@ -582,9 +582,9 @@ public com.google.api.services.bigquery.model.QueryResponse call() {
582582 }
583583
584584 @ Override
585- public QueryResponse getQueryResults (JobId job , QueryResultsOption ... options ) {
585+ public QueryResponse getQueryResults (JobId jobId , QueryResultsOption ... options ) {
586586 Map <BigQueryRpc .Option , ?> optionsMap = optionMap (options );
587- return getQueryResults (job , options (), optionsMap );
587+ return getQueryResults (jobId , options (), optionsMap );
588588 }
589589
590590 private static QueryResponse getQueryResults (JobId jobId ,
0 commit comments