Skip to content

Commit 78a6b0b

Browse files
committed
Fix unchecked type conversion
1 parent 5c23a8e commit 78a6b0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/jenkinsci/plugins/bitbucket/scm/MultiScmAdapter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public MultiScmAdapter(MultiSCM multiScm, Run<?, ?> build) {
4646
this.build = build;
4747
}
4848

49-
public Map getCommitRepoMap() throws Exception {
49+
public Map<String, URIish> getCommitRepoMap() throws Exception {
5050
HashMap<String, URIish> commitRepoMap = new HashMap<String, URIish>();
5151

5252
for (SCM scm : multiScm.getConfiguredSCMs()) {

0 commit comments

Comments
 (0)