Skip to content

Commit

Permalink
octopus-releng-lib-8 Fix JiraComponentVersion.toString
Browse files Browse the repository at this point in the history
  • Loading branch information
aryabokon committed Aug 19, 2023
1 parent b139305 commit c54ac30
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,9 @@ public int hashCode() {
public String toString() {
return "JiraComponentVersion{" +
"componentVersion=" + componentVersion +
", minorVersion='" + minorVersion + '\'' +
", releaseVersion='" + releaseVersion + '\'' +
", buildVersion='" + buildVersion + '\'' +
", minorVersion='" + getMajorVersion() + '\'' +
", releaseVersion='" + getReleaseVersion() + '\'' +
", buildVersion='" + getBuildVersion() + '\'' +
'}';
}
}

0 comments on commit c54ac30

Please sign in to comment.