Skip to content

Commit

Permalink
removed page size parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
d-hrs committed Aug 23, 2024
1 parent 2016359 commit 0d79ebd
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@

public class GoogleAdsReporter
{
private static final int PAGE_SIZE = 1000;
private final Logger logger = LoggerFactory.getLogger(GoogleAdsReporter.class);
private final PluginTask task;
private final UserCredentials credentials;
Expand Down Expand Up @@ -223,7 +222,6 @@ public SearchGoogleAdsRequest buildRequest(PluginTask task, String query)
{
return SearchGoogleAdsRequest.newBuilder()
.setCustomerId(task.getCustomerId())
.setPageSize(PAGE_SIZE)
.setQuery(query)
.build();
}
Expand Down

0 comments on commit 0d79ebd

Please sign in to comment.