Skip to content
This repository has been archived by the owner on Apr 6, 2022. It is now read-only.

Commit

Permalink
[FIXED JENKINS-18852] Do not show trend for aggregated result.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed Aug 7, 2013
1 parent 0b58a33 commit f99bae0
Showing 1 changed file with 8 additions and 0 deletions.
@@ -1,5 +1,7 @@
package hudson.plugins.warnings;

import org.kohsuke.stapler.StaplerRequest;

import hudson.model.AbstractProject;

import hudson.plugins.analysis.core.ResultAction;
Expand Down Expand Up @@ -41,5 +43,11 @@ public AggregatedWarningsProjectAction(final AbstractProject<?, ?> project,
public String getIconFileName() {
return null; // do not show aggregation in UI
}

/** {@inheritDoc} */
@Override
public boolean isTrendVisible(final StaplerRequest request) {
return false;
}
}

0 comments on commit f99bae0

Please sign in to comment.