@@ -445,7 +445,7 @@ public com.google.api.services.bigquery.model.Job call() throws IOException {
445445 },
446446 getRetryOptions (optionsMap ) != null
447447 ? RetryOption .mergeToSettings (
448- getOptions ().getRetrySettings (), getRetryOptions (optionsMap ))
448+ getOptions ().getRetrySettings (), getRetryOptions (optionsMap ))
449449 : getOptions ().getRetrySettings (),
450450 BigQueryBaseService .BIGQUERY_EXCEPTION_HANDLER ,
451451 getOptions ().getClock (),
@@ -618,7 +618,7 @@ public boolean delete(DatasetId datasetId, DatasetDeleteOption... options) {
618618 final DatasetId completeDatasetId = datasetId .setProjectId (getOptions ().getProjectId ());
619619 final Map <BigQueryRpc .Option , ?> optionsMap = optionMap (options );
620620 final Span datasetDelete = otelHelper .datasetDeleteSpan (datasetId , optionsMap );
621- try (Scope datasetDeleteScope = datasetDelete != null ? datasetDelete .makeCurrent () : null ){
621+ try (Scope datasetDeleteScope = datasetDelete != null ? datasetDelete .makeCurrent () : null ) {
622622 return BigQueryRetryHelper .runWithRetries (
623623 new Callable <Boolean >() {
624624 @ Override
@@ -1055,7 +1055,9 @@ public com.google.api.services.bigquery.model.Routine call() throws IOException
10551055
10561056 @ Override
10571057 public Page <Table > listTables (String datasetId , TableListOption ... options ) {
1058- Span tablesList = otelHelper .tablesListSpan (DatasetId .of (getOptions ().getProjectId (), datasetId ), optionMap (options ));
1058+ Span tablesList =
1059+ otelHelper .tablesListSpan (
1060+ DatasetId .of (getOptions ().getProjectId (), datasetId ), optionMap (options ));
10591061 try (Scope tablesListScope = tablesList != null ? tablesList .makeCurrent () : null ) {
10601062 return listTables (
10611063 DatasetId .of (getOptions ().getProjectId (), datasetId ), getOptions (), optionMap (options ));
@@ -1081,7 +1083,9 @@ public Page<Table> listTables(DatasetId datasetId, TableListOption... options) {
10811083
10821084 @ Override
10831085 public Page <Model > listModels (String datasetId , ModelListOption ... options ) {
1084- final Span modelsList = otelHelper .modelsListSpan (DatasetId .of (getOptions ().getProjectId (), datasetId ), optionMap (options ));
1086+ final Span modelsList =
1087+ otelHelper .modelsListSpan (
1088+ DatasetId .of (getOptions ().getProjectId (), datasetId ), optionMap (options ));
10851089 try (Scope modelsListScope = modelsList != null ? modelsList .makeCurrent () : null ) {
10861090 return listModels (
10871091 DatasetId .of (getOptions ().getProjectId (), datasetId ), getOptions (), optionMap (options ));
@@ -1107,7 +1111,9 @@ public Page<Model> listModels(DatasetId datasetId, ModelListOption... options) {
11071111
11081112 @ Override
11091113 public Page <Routine > listRoutines (String datasetId , RoutineListOption ... options ) {
1110- final Span routinesList = otelHelper .routinesListSpan (DatasetId .of (getOptions ().getProjectId (), datasetId ), optionMap (options ));
1114+ final Span routinesList =
1115+ otelHelper .routinesListSpan (
1116+ DatasetId .of (getOptions ().getProjectId (), datasetId ), optionMap (options ));
11111117 try (Scope routinesListScope = routinesList != null ? routinesList .makeCurrent () : null ) {
11121118 return listRoutines (
11131119 DatasetId .of (getOptions ().getProjectId (), datasetId ), getOptions (), optionMap (options ));
@@ -1316,7 +1322,9 @@ public Rows apply(RowToInsert rowToInsert) {
13161322 @ Override
13171323 public TableDataInsertAllResponse call () throws Exception {
13181324 return bigQueryRpc .insertAllSkipExceptionTranslation (
1319- tableId .getProject (), tableId .getDataset (), tableId .getTable (),
1325+ tableId .getProject (),
1326+ tableId .getDataset (),
1327+ tableId .getTable (),
13201328 requestPb );
13211329 }
13221330 },
@@ -1723,7 +1731,8 @@ public TableResult query(QueryJobConfiguration configuration, JobId jobId, JobOp
17231731 public QueryResponse getQueryResults (JobId jobId , QueryResultsOption ... options ) {
17241732 Map <BigQueryRpc .Option , ?> optionsMap = optionMap (options );
17251733 final Span getQueryResults = otelHelper .getQueryResults (jobId , optionsMap );
1726- try (Scope getQueryResultsScope = getQueryResults != null ? getQueryResults .makeCurrent () : null ) {
1734+ try (Scope getQueryResultsScope =
1735+ getQueryResults != null ? getQueryResults .makeCurrent () : null ) {
17271736 return getQueryResults (jobId , getOptions (), optionsMap );
17281737 } finally {
17291738 if (getQueryResults != null ) {
@@ -1873,7 +1882,8 @@ public List<String> testIamPermissions(
18731882 : tableId .getProject ());
18741883 final Map <BigQueryRpc .Option , ?> optionsMap = optionMap (options );
18751884 final Span testIamPermissions = otelHelper .testIamPermissions (tableId , permissions , optionsMap );
1876- try (Scope testIamPermissionsScope = testIamPermissions != null ? testIamPermissions .makeCurrent () : null ) {
1885+ try (Scope testIamPermissionsScope =
1886+ testIamPermissions != null ? testIamPermissions .makeCurrent () : null ) {
18771887 com .google .api .services .bigquery .model .TestIamPermissionsResponse response =
18781888 BigQueryRetryHelper .runWithRetries (
18791889 new Callable <com .google .api .services .bigquery .model .TestIamPermissionsResponse >() {
0 commit comments