Skip to content

Commit

Permalink
Fix missing semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
iciclespider authored Jan 29, 2025
1 parent bed0499 commit a7fe981
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ protected int _hashCode() {
public String toString() {
String result = origin.getHash();
if (isMerge()) {
result += "+" + ((BranchSCMRevision) getTarget()).getHash()
result += "+" + ((BranchSCMRevision) getTarget()).getHash();
}
return result
return result;

Check warning on line 63 in src/main/java/io/jenkins/plugins/gitlabbranchsource/MergeRequestSCMRevision.java

View check run for this annotation

ci.jenkins.io / Code Coverage

Not covered lines

Lines 59-63 are not covered by tests
}
}

0 comments on commit a7fe981

Please sign in to comment.