Skip to content

Commit f8717e7

Browse files
author
Reynald Borer
committed
Follow code review
1 parent f436651 commit f8717e7

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/QueryJobConfiguration.java

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ public Builder setUseLegacySql(Boolean useLegacySql) {
343343
}
344344

345345
/**
346-
* Limit the billing tier for this job. Queries that have resource usage beyond this tier will fail
346+
* Limits the billing tier for this job. Queries that have resource usage beyond this tier will fail
347347
* (without incurring a charge). If unspecified, this will be set to your project default.
348348
349349
* @param maximumBillingTier maximum billing tier for this job
@@ -522,9 +522,11 @@ public Boolean useLegacySql() {
522522
}
523523

524524
/**
525-
* Return the optional billing tier limit for this job.
525+
* Returns the optional billing tier limit for this job.
526526
*/
527-
public Integer maximumBillingTier() { return maximumBillingTier; }
527+
public Integer maximumBillingTier() {
528+
return maximumBillingTier;
529+
}
528530

529531
/**
530532
* [Experimental] Returns options allowing the schema of the destination table to be updated as a side effect of the

0 commit comments

Comments
 (0)