Skip to content

Commit c2b44ee

Browse files
author
Praful Makani
committed
remove setter
1 parent 2810cc0 commit c2b44ee

File tree

2 files changed

+0
-30
lines changed

2 files changed

+0
-30
lines changed

google-cloud-clients/google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/Table.java

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,9 @@
2121
import com.google.cloud.bigquery.BigQuery.JobOption;
2222
import com.google.cloud.bigquery.BigQuery.TableDataListOption;
2323
import com.google.cloud.bigquery.BigQuery.TableOption;
24-
import com.google.cloud.bigquery.TableInfo.Builder;
2524
import com.google.common.collect.ImmutableList;
2625
import java.io.IOException;
2726
import java.io.ObjectInputStream;
28-
import java.math.BigInteger;
2927
import java.util.List;
3028
import java.util.Map;
3129
import java.util.Objects;
@@ -121,18 +119,6 @@ public Builder setDefinition(TableDefinition definition) {
121119
return this;
122120
}
123121

124-
@Override
125-
Builder setNumBytes(Long numBytes) {
126-
infoBuilder.setNumBytes(numBytes);
127-
return this;
128-
}
129-
130-
@Override
131-
Builder setNumRows(BigInteger numRows) {
132-
infoBuilder.setNumRows(numRows);
133-
return this;
134-
}
135-
136122
@Override
137123
public TableInfo.Builder setEncryptionConfiguration(EncryptionConfiguration configuration) {
138124
infoBuilder.setEncryptionConfiguration(configuration);

google-cloud-clients/google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/TableInfo.java

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,6 @@ public abstract static class Builder {
9494

9595
abstract Builder setLastModifiedTime(Long lastModifiedTime);
9696

97-
abstract Builder setNumBytes(Long numBytes);
98-
99-
abstract Builder setNumRows(BigInteger numRows);
100-
10197
abstract Builder setSelfLink(String selfLink);
10298

10399
/** Sets the table identity. */
@@ -229,18 +225,6 @@ Builder setLastModifiedTime(Long lastModifiedTime) {
229225
return this;
230226
}
231227

232-
@Override
233-
Builder setNumBytes(Long numBytes) {
234-
this.numBytes = numBytes;
235-
return this;
236-
}
237-
238-
@Override
239-
Builder setNumRows(BigInteger numRows) {
240-
this.numRows = numRows;
241-
return this;
242-
}
243-
244228
@Override
245229
Builder setSelfLink(String selfLink) {
246230
this.selfLink = selfLink;

0 commit comments

Comments
 (0)