Skip to content

Commit

Permalink
remove setter
Browse files Browse the repository at this point in the history
  • Loading branch information
Praful Makani committed Dec 31, 2018
1 parent 2810cc0 commit c2b44ee
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,9 @@
import com.google.cloud.bigquery.BigQuery.JobOption;
import com.google.cloud.bigquery.BigQuery.TableDataListOption;
import com.google.cloud.bigquery.BigQuery.TableOption;
import com.google.cloud.bigquery.TableInfo.Builder;
import com.google.common.collect.ImmutableList;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.math.BigInteger;
import java.util.List;
import java.util.Map;
import java.util.Objects;
Expand Down Expand Up @@ -121,18 +119,6 @@ public Builder setDefinition(TableDefinition definition) {
return this;
}

@Override
Builder setNumBytes(Long numBytes) {
infoBuilder.setNumBytes(numBytes);
return this;
}

@Override
Builder setNumRows(BigInteger numRows) {
infoBuilder.setNumRows(numRows);
return this;
}

@Override
public TableInfo.Builder setEncryptionConfiguration(EncryptionConfiguration configuration) {
infoBuilder.setEncryptionConfiguration(configuration);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,6 @@ public abstract static class Builder {

abstract Builder setLastModifiedTime(Long lastModifiedTime);

abstract Builder setNumBytes(Long numBytes);

abstract Builder setNumRows(BigInteger numRows);

abstract Builder setSelfLink(String selfLink);

/** Sets the table identity. */
Expand Down Expand Up @@ -229,18 +225,6 @@ Builder setLastModifiedTime(Long lastModifiedTime) {
return this;
}

@Override
Builder setNumBytes(Long numBytes) {
this.numBytes = numBytes;
return this;
}

@Override
Builder setNumRows(BigInteger numRows) {
this.numRows = numRows;
return this;
}

@Override
Builder setSelfLink(String selfLink) {
this.selfLink = selfLink;
Expand Down

0 comments on commit c2b44ee

Please sign in to comment.