Skip to content

Commit

Permalink
Update FieldInfo._ensureRepeatedField return type (#893)
Browse files Browse the repository at this point in the history
Leftover change from #880.
  • Loading branch information
osa1 authored Oct 26, 2023
1 parent e146515 commit 2ce3e14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion protobuf/lib/src/protobuf/field_info.dart
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ class FieldInfo<T> {

/// Convenience method to thread this FieldInfo's reified type parameter to
/// `_FieldSet._ensureRepeatedField`.
List<T> _ensureRepeatedField(BuilderInfo meta, _FieldSet fs) {
PbList<T> _ensureRepeatedField(BuilderInfo meta, _FieldSet fs) {
return fs._ensureRepeatedField<T>(meta, this);
}

Expand Down

0 comments on commit 2ce3e14

Please sign in to comment.