fix(java): tidy default released version - #6654
Conversation
There was a problem hiding this comment.
Code Review
This pull request adds logic to clear the ReleasedVersion of a Java library if it matches a defaultReleasedVersion, and includes a unit test for this behavior. However, a review comment correctly points out that defaultReleasedVersion is undefined in the package, which will lead to a compilation error.
| if library.Java.ReleasedVersion == "" { | ||
| return | ||
| } | ||
| if library.Java.ReleasedVersion == defaultReleasedVersion { |
There was a problem hiding this comment.
|
I think this better be part of |
Thanks and your comment on the |
Tidy the
java.released_versionif it was set to the default of0.0.0.Noticed this being serialized while testing a diff change.