Skip to content

Commit

Permalink
Make constrcutor package protected
Browse files Browse the repository at this point in the history
  • Loading branch information
elharo committed May 1, 2024
1 parent 0edb84c commit 48d7496
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -34,7 +34,7 @@ class RowIterable
private final List<Type> types;
private final Page page;

public RowIterable(ConnectorSession session, List<Type> types, Page page)
RowIterable(ConnectorSession session, List<Type> types, Page page)
{
this.session = session;
this.types = ImmutableList.copyOf(requireNonNull(types, "types is null"));
Expand Down

0 comments on commit 48d7496

Please sign in to comment.