Skip to content

Commit

Permalink
JENKINS-41712: Overriding getValue() (#6)
Browse files Browse the repository at this point in the history
* JENKINS-41712: Overriding getValue()

Based on bug, we should not return null, so we are returning toString() result instead.

* JENKINS-41712: Update getvalue( ) to return String

* JENKINS-41712: Do not force @OverRide

* JENKINS-41712: Remove annotation
  • Loading branch information
olhado committed Oct 12, 2017
1 parent 535621f commit 560ec98
Showing 1 changed file with 5 additions and 1 deletion.
Expand Up @@ -56,4 +56,8 @@ public String toString() {
public String getShortDescription() {
return getName();
}
}

public String getValue() {
return toString();
}
}

0 comments on commit 560ec98

Please sign in to comment.