Skip to content

Commit

Permalink
Merge pull request apache#10199 from tc-dc/bq-avro-fix
Browse files Browse the repository at this point in the history
[BEAM-8809] Make the constructor for AvroWriteRequest public
  • Loading branch information
pabloem committed Dec 4, 2019
2 parents 4912281 + 31e2750 commit 3906c42
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class AvroWriteRequest<T> {
private final T element;
private final Schema schema;

AvroWriteRequest(T element, Schema schema) {
public AvroWriteRequest(T element, Schema schema) {
this.element = element;
this.schema = schema;
}
Expand Down

0 comments on commit 3906c42

Please sign in to comment.