Skip to content

Commit a7fe981

Browse files
authored
Fix missing semicolons
1 parent bed0499 commit a7fe981

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/io/jenkins/plugins/gitlabbranchsource/MergeRequestSCMRevision.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ protected int _hashCode() {
5858
public String toString() {
5959
String result = origin.getHash();
6060
if (isMerge()) {
61-
result += "+" + ((BranchSCMRevision) getTarget()).getHash()
61+
result += "+" + ((BranchSCMRevision) getTarget()).getHash();
6262
}
63-
return result
63+
return result;
6464
}
6565
}

0 commit comments

Comments
 (0)