Skip to content
Closed
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 @@ -133,7 +133,7 @@ public ListIntegersPagedResponse apply(ListIntegersPage input) {
}
}

private static class ListIntegersPage
public static class ListIntegersPage
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think we should make this change. This class has existed for a while and we didn't run into any issues. I think it is because the build infra messed up somewhere after monorepo migration.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

SG, I'll backtrack and find the origin of this problem. Thanks for the quick review.

extends AbstractPage<Integer, List<Integer>, Integer, ListIntegersPage> {

public ListIntegersPage(
Expand All @@ -148,7 +148,7 @@ protected ListIntegersPage createPage(
}
}

private static class ListIntegersSizedPage
public static class ListIntegersSizedPage
extends AbstractFixedSizeCollection<
Integer, List<Integer>, Integer, ListIntegersPage, ListIntegersSizedPage> {

Expand Down
Loading