forked from jenkinsci/global-build-stats-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'JENKINS-43183' of https://github.com/rafal-prasal/globa…
…l-build-stats-plugin into AllPRs
- Loading branch information
Showing
9 changed files
with
78 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...ns/global_build_stats/rententionstrategies/strategybehaviours/BuildCompletedListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
package hudson.plugins.global_build_stats.rententionstrategies.strategybehaviours; | ||
|
||
import hudson.model.AbstractBuild; | ||
import hudson.model.Run; | ||
import hudson.plugins.global_build_stats.business.GlobalBuildStatsPluginSaver; | ||
|
||
/** | ||
* @author fcamblor | ||
*/ | ||
public interface BuildCompletedListener { | ||
public void buildCompleted(AbstractBuild buils, GlobalBuildStatsPluginSaver pluginSaver); | ||
public void buildCompleted(Run buils, GlobalBuildStatsPluginSaver pluginSaver); | ||
} |
4 changes: 2 additions & 2 deletions
4
...gins/global_build_stats/rententionstrategies/strategybehaviours/BuildDeletedListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
package hudson.plugins.global_build_stats.rententionstrategies.strategybehaviours; | ||
|
||
import hudson.model.AbstractBuild; | ||
import hudson.model.Run; | ||
import hudson.plugins.global_build_stats.business.GlobalBuildStatsPluginSaver; | ||
|
||
/** | ||
* @author fcamblor | ||
*/ | ||
public interface BuildDeletedListener { | ||
public void buildDeleted(AbstractBuild buils, GlobalBuildStatsPluginSaver pluginSaver); | ||
public void buildDeleted(Run buils, GlobalBuildStatsPluginSaver pluginSaver); | ||
} |