File tree 3 files changed +13
-1
lines changed
3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 55
55
<!-- Record your changes in the trunk here. -->
56
56
< div id ="trunk " style ="display:none "> <!--=TRUNK-BEGIN=-->
57
57
< ul class =image >
58
+ < li class =bug >
59
+ Fixed < tt > java.lang.NoSuchMethodError: hudson.model.RunMap.put(Lhudson/model/Run;)Lhudson/model/Run;</ tt >
60
+ (< a href ="https://issues.jenkins-ci.org/browse/JENKINS-15487 "> issue 15487</ a > )
58
61
< li class =bug >
59
62
Saving the update center list after the metadata has been fetched results in
60
63
the metadata being persisted twice
Original file line number Diff line number Diff line change @@ -172,6 +172,11 @@ protected final String getIdOf(R r) {
172
172
return r .getId ();
173
173
}
174
174
175
+ @ Override
176
+ public R put (R r ) {
177
+ return super ._put (r );
178
+ }
179
+
175
180
/**
176
181
* Reuses the same reference as much as we can.
177
182
* <p>
Original file line number Diff line number Diff line change @@ -502,7 +502,11 @@ public R getByNumber(int n) {
502
502
return search (n ,Direction .EXACT );
503
503
}
504
504
505
- public final R put (R value ) {
505
+ public R put (R value ) {
506
+ return _put (value );
507
+ }
508
+
509
+ protected R _put (R value ) {
506
510
return put (getNumberOf (value ),value );
507
511
}
508
512
You can’t perform that action at this time.
0 commit comments