Say you have a repeating box.
message Foo { optional int32 val = 1; } message Bar { repeated Foo foo = 1; }
This will create a method
List<Foo> getFooList()
Are there any circumstances where getFooList will return null? Or will it already return the list, even if it is empty?
source share