Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ private static class LazyTableIterable implements Iterable<Table>, Serializable
private static final long serialVersionUID = 3312744215731674032L;

private final BigQueryOptions options;
private Iterable<BaseTableInfo> infoIterable;
private final Iterable<BaseTableInfo> infoIterable;
private transient BigQuery bigquery;

public LazyTableIterable(BigQueryOptions options, Iterable<BaseTableInfo> infoIterable) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ private static class LazyBlobIterable implements Iterable<Blob>, Serializable {
private static final long serialVersionUID = -3092290247725378832L;

private final StorageOptions options;
private Iterable<BlobInfo> infoIterable;
private final Iterable<BlobInfo> infoIterable;
private transient Storage storage;

public LazyBlobIterable(StorageOptions options, Iterable<BlobInfo> infoIterable) {
Expand Down