Skip to content

Commit

Permalink
refactor: remove duplicate page token field from listdatasets (#868)
Browse files Browse the repository at this point in the history
  • Loading branch information
Praful Makani committed Oct 26, 2020
1 parent 9045def commit d1d72ed
Showing 1 changed file with 0 additions and 1 deletion.
Expand Up @@ -145,7 +145,6 @@ public Tuple<String, Iterable<Dataset>> listDatasets(String projectId, Map<Optio
.setFilter(Option.LABEL_FILTER.getString(options))
.setMaxResults(Option.MAX_RESULTS.getLong(options))
.setPageToken(Option.PAGE_TOKEN.getString(options))
.setPageToken(Option.PAGE_TOKEN.getString(options))
.execute();
Iterable<DatasetList.Datasets> datasets = datasetsList.getDatasets();
return Tuple.of(
Expand Down

0 comments on commit d1d72ed

Please sign in to comment.