Skip to content

Protocol Buffers v3.7.0rc2

Pre-release
Pre-release
Compare
Choose a tag to compare
@acozzette acozzette released this 01 Feb 20:04
· 45 commits to 3.7.x since this release
Fixed infinite recursion problem with Java GeneratedMessageV3 (#5657)

GeneratedMessageV3#setUnknownFieldsProto3 was trying to delegate to
setUnknownFields but was inadvertently resulting in infinite recursion.
This commit makes setUnknownFields and setUnknownFieldsProto3 delegate
to a common private method to fix the problem and avoid confusion.