We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bed0499 commit a7fe981Copy full SHA for a7fe981
src/main/java/io/jenkins/plugins/gitlabbranchsource/MergeRequestSCMRevision.java
@@ -58,8 +58,8 @@ protected int _hashCode() {
58
public String toString() {
59
String result = origin.getHash();
60
if (isMerge()) {
61
- result += "+" + ((BranchSCMRevision) getTarget()).getHash()
+ result += "+" + ((BranchSCMRevision) getTarget()).getHash();
62
}
63
- return result
+ return result;
64
65
0 commit comments