File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1661,7 +1661,7 @@ for (job in allItems) {
16611661 hudson.plugins.git.Revision r = action.getLastBuiltRevision();
16621662 if (r != null) {
16631663 for (branch in r.getBranches()) {
1664- action.buildsByBranchName.put(fixNull(branch.getName()), action.lastBuild)
1664+ action.buildsByBranchName.put(fixNull((String) branch.getName()), action.lastBuild)
16651665 }
16661666 }
16671667 build.actions.remove(action)
@@ -1680,7 +1680,7 @@ for (job in allItems) {
16801680 hudson.plugins.git.Revision r = action.getLastBuiltRevision();
16811681 if (r != null) {
16821682 for (branch in r.getBranches()) {
1683- action.buildsByBranchName.put(fixNull(branch.getName()), action.lastBuild)
1683+ action.buildsByBranchName.put(fixNull((String) branch.getName()), action.lastBuild)
16841684 }
16851685 }
16861686 run.actions.remove(action)
You can’t perform that action at this time.
0 commit comments