Polishing GH-195 - fix toString() methods to reflect change from plural to singular"

This commit is contained in:
Oleg Zhurakousky
2020-07-19 16:52:09 +02:00
parent 320a071f58
commit e78521244e

View File

@@ -253,9 +253,9 @@ public class ReleaserProperties implements Serializable {
String getPublishDocsCommand();
/**
* @param publishDocsCommands to set
* @param publishDocsCommand to set
*/
void setPublishDocsCommand(String publishDocsCommands);
void setPublishDocsCommand(String publishDocsCommand);
/**
* @return generate release train docs command
@@ -1189,7 +1189,7 @@ public class ReleaserProperties implements Serializable {
public String toString() {
return "Bash{" + "buildCommand='" + this.buildCommand + '\''
+ ", deployCommand='" + this.deployCommand + '\''
+ ", publishDocsCommands=" + this.publishDocsCommand
+ ", publishDocsCommand=" + this.publishDocsCommand
+ "generateReleaseTrainDocsCommand='"
+ this.generateReleaseTrainDocsCommand + '\'' + ", waitTimeInMinutes="
+ this.waitTimeInMinutes + '}';
@@ -1365,7 +1365,7 @@ public class ReleaserProperties implements Serializable {
.add("buildCommand='" + buildCommand + "'")
.add("deployCommand='" + deployCommand + "'")
.add("deployGuidesCommand='" + deployGuidesCommand + "'")
.add("publishDocsCommands=" + publishDocsCommand)
.add("publishDocsCommand=" + publishDocsCommand)
.add("generateReleaseTrainDocsCommand='"
+ generateReleaseTrainDocsCommand + "'")
.add("systemProperties='" + systemProperties + "'")