Skip to content

Commit

Permalink
Remove lazy=true from repeated message field (#360)
Browse files Browse the repository at this point in the history
Signed-off-by: Justin King <jcking@google.com>
  • Loading branch information
jcking committed Jun 5, 2024
1 parent 3cdaf9b commit 7c230a8
Show file tree
Hide file tree
Showing 6 changed files with 3,961 additions and 3,959 deletions.
2 changes: 1 addition & 1 deletion proto/cel/expr/conformance/proto2/test_all_types.proto
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ message TestAllTypes {
repeated NestedEnum repeated_nested_enum = 52;
repeated string repeated_string_piece = 53 [ctype = STRING_PIECE];
repeated string repeated_cord = 54 [ctype = CORD];
repeated NestedMessage repeated_lazy_message = 55 [lazy = true];
repeated NestedMessage repeated_lazy_message = 55;

// Repeated wellknown.
repeated google.protobuf.Any repeated_any = 120;
Expand Down
2 changes: 1 addition & 1 deletion proto/cel/expr/conformance/proto3/test_all_types.proto
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ message TestAllTypes {
repeated NestedEnum repeated_nested_enum = 52;
repeated string repeated_string_piece = 53 [ctype = STRING_PIECE];
repeated string repeated_cord = 54 [ctype = CORD];
repeated NestedMessage repeated_lazy_message = 55 [lazy = true];
repeated NestedMessage repeated_lazy_message = 55;

// Repeated wellknown.
repeated google.protobuf.Any repeated_any = 120;
Expand Down
2 changes: 1 addition & 1 deletion proto/test/v1/proto2/test_all_types.proto
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ message TestAllTypes {
repeated NestedEnum repeated_nested_enum = 52;
repeated string repeated_string_piece = 53 [ctype = STRING_PIECE];
repeated string repeated_cord = 54 [ctype = CORD];
repeated NestedMessage repeated_lazy_message = 55 [lazy = true];
repeated NestedMessage repeated_lazy_message = 55;

// Repeated wellknown.
repeated google.protobuf.Any repeated_any = 120;
Expand Down
Loading

0 comments on commit 7c230a8

Please sign in to comment.