Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[JENKINS-22160] Fix findings from FindBugs static analysis
- Private readResolve method in hudson.plugins.sloccount.SloccountResult not inherited by subclasses.
  • Loading branch information
mixalturek committed Mar 14, 2014
1 parent 4b42fdc commit 88c7d07
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -64,7 +64,7 @@ public SloccountReportStatistics getStatistics() {
*
* @return this with optionally updated data
*/
private Object readResolve() {
protected Object readResolve() {
if (report != null && statistics == null) {
List<SloccountLanguageStatistics> languages = new ArrayList<SloccountLanguageStatistics>();

Expand Down

0 comments on commit 88c7d07

Please sign in to comment.