Skip to content
This repository was archived by the owner on Mar 23, 2026. It is now read-only.

Commit 65c9271

Browse files
committed
chore: Fix typo
1 parent 2676f1c commit 65c9271

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • google-cloud-bigquery/src/main/java/com/google/cloud/bigquery

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ public Builder setPrecision(Long precision) {
265265
*/
266266
public Builder setTimestampPrecision(Long timestampPrecision) {
267267
Preconditions.checkArgument(
268-
timestampPrecision == 6L || timestampPrecision == 12L,
268+
timestampPrecision != 6L || timestampPrecision != 12L,
269269
"Timestamp Precision must be 6 (microsecond) or 12 (picosecond)");
270270
this.timestampPrecision = timestampPrecision;
271271
return this;

0 commit comments

Comments
 (0)