Polishing GH-195 - fix toString() methods to reflect change from plural to singular"
This commit is contained in:
@@ -253,9 +253,9 @@ public class ReleaserProperties implements Serializable {
|
|||||||
String getPublishDocsCommand();
|
String getPublishDocsCommand();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param publishDocsCommands to set
|
* @param publishDocsCommand to set
|
||||||
*/
|
*/
|
||||||
void setPublishDocsCommand(String publishDocsCommands);
|
void setPublishDocsCommand(String publishDocsCommand);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return generate release train docs command
|
* @return generate release train docs command
|
||||||
@@ -1189,7 +1189,7 @@ public class ReleaserProperties implements Serializable {
|
|||||||
public String toString() {
|
public String toString() {
|
||||||
return "Bash{" + "buildCommand='" + this.buildCommand + '\''
|
return "Bash{" + "buildCommand='" + this.buildCommand + '\''
|
||||||
+ ", deployCommand='" + this.deployCommand + '\''
|
+ ", deployCommand='" + this.deployCommand + '\''
|
||||||
+ ", publishDocsCommands=" + this.publishDocsCommand
|
+ ", publishDocsCommand=" + this.publishDocsCommand
|
||||||
+ "generateReleaseTrainDocsCommand='"
|
+ "generateReleaseTrainDocsCommand='"
|
||||||
+ this.generateReleaseTrainDocsCommand + '\'' + ", waitTimeInMinutes="
|
+ this.generateReleaseTrainDocsCommand + '\'' + ", waitTimeInMinutes="
|
||||||
+ this.waitTimeInMinutes + '}';
|
+ this.waitTimeInMinutes + '}';
|
||||||
@@ -1365,7 +1365,7 @@ public class ReleaserProperties implements Serializable {
|
|||||||
.add("buildCommand='" + buildCommand + "'")
|
.add("buildCommand='" + buildCommand + "'")
|
||||||
.add("deployCommand='" + deployCommand + "'")
|
.add("deployCommand='" + deployCommand + "'")
|
||||||
.add("deployGuidesCommand='" + deployGuidesCommand + "'")
|
.add("deployGuidesCommand='" + deployGuidesCommand + "'")
|
||||||
.add("publishDocsCommands=" + publishDocsCommand)
|
.add("publishDocsCommand=" + publishDocsCommand)
|
||||||
.add("generateReleaseTrainDocsCommand='"
|
.add("generateReleaseTrainDocsCommand='"
|
||||||
+ generateReleaseTrainDocsCommand + "'")
|
+ generateReleaseTrainDocsCommand + "'")
|
||||||
.add("systemProperties='" + systemProperties + "'")
|
.add("systemProperties='" + systemProperties + "'")
|
||||||
|
|||||||
Reference in New Issue
Block a user