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

Commit

Permalink
[FIXED JENKINS-11758] Added useDeltaValues to public API of reporter.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed Nov 17, 2011
1 parent d66347a commit 99c666e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
Expand Up @@ -486,7 +486,8 @@ public Thresholds getThresholds() {
}

/**
* Returns the useDeltaValues.
* Returns whether absolute annotations delta or the actual annotations set
* difference should be used to evaluate the build stability.
*
* @return the useDeltaValues
*/
Expand Down
Expand Up @@ -177,6 +177,16 @@ public HealthAwareReporter(final String healthy, final String unHealthy, final S
}
// CHECKSTYLE:ON

/**
* Returns whether absolute annotations delta or the actual annotations set
* difference should be used to evaluate the build stability.
*
* @return the useDeltaValues
*/
public boolean getUseDeltaValues() {
return useDeltaValues;
}

/** {@inheritDoc} */
public Thresholds getThresholds() {
return thresholds;
Expand Down

0 comments on commit 99c666e

Please sign in to comment.