File tree Expand file tree Collapse file tree 3 files changed +2
-8
lines changed
src/main/java/org/jenkinsci/plugins/parameterizedscheduler Expand file tree Collapse file tree 3 files changed +2
-8
lines changed Original file line number Diff line number Diff line change 65
65
<groupId >org.jenkins-ci.plugins.workflow</groupId >
66
66
<artifactId >workflow-job</artifactId >
67
67
</dependency >
68
- <dependency >
69
- <groupId >org.jenkins-ci.plugins</groupId >
70
- <artifactId >structs</artifactId >
71
- </dependency >
72
68
<dependency >
73
69
<groupId >org.jenkins-ci.plugins.workflow</groupId >
74
70
<artifactId >workflow-cps</artifactId >
Original file line number Diff line number Diff line change @@ -20,9 +20,7 @@ public class Cron extends PeriodicWork {
20
20
21
21
@ Override
22
22
public long getRecurrencePeriod () {
23
- long period = TimeUnit .MINUTES .toMillis (1 );
24
- LOGGER .log (Level .FINEST , "period set to {0}" , period );
25
- return period ;
23
+ return TimeUnit .MINUTES .toMillis (1 );
26
24
}
27
25
28
26
@ Override
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ public void run() {
46
46
47
47
/**
48
48
* this method started out as hudson.model.AbstractProject.getDefaultParametersValues()
49
- * @param parameterValues
49
+ * @param parameterValues A map of parameters and their values
50
50
* @return the ParameterValues as set from the crontab row or their defaults
51
51
*/
52
52
private List <ParameterValue > configurePropertyValues (Map <String , String > parameterValues ) {
You can’t perform that action at this time.
0 commit comments