@@ -131,7 +131,8 @@ public void setTriggerTasksList(List<TriggerTask> triggerTasks) {
131
131
* @since 4.2
132
132
*/
133
133
public List <TriggerTask > getTriggerTaskList () {
134
- return (this .triggerTasks != null ? Collections .unmodifiableList (this .triggerTasks ) : Collections .emptyList ());
134
+ return (this .triggerTasks != null ? Collections .unmodifiableList (this .triggerTasks ) :
135
+ Collections .<TriggerTask >emptyList ());
135
136
}
136
137
137
138
/**
@@ -161,7 +162,8 @@ public void setCronTasksList(List<CronTask> cronTasks) {
161
162
* @since 4.2
162
163
*/
163
164
public List <CronTask > getCronTaskList () {
164
- return (this .cronTasks != null ? Collections .unmodifiableList (this .cronTasks ) : Collections .emptyList ());
165
+ return (this .cronTasks != null ? Collections .unmodifiableList (this .cronTasks ) :
166
+ Collections .<CronTask >emptyList ());
165
167
}
166
168
167
169
/**
@@ -191,7 +193,8 @@ public void setFixedRateTasksList(List<IntervalTask> fixedRateTasks) {
191
193
* @since 4.2
192
194
*/
193
195
public List <IntervalTask > getFixedRateTaskList () {
194
- return (this .fixedRateTasks != null ? Collections .unmodifiableList (this .fixedRateTasks ) : Collections .emptyList ());
196
+ return (this .fixedRateTasks != null ? Collections .unmodifiableList (this .fixedRateTasks ) :
197
+ Collections .<IntervalTask >emptyList ());
195
198
}
196
199
197
200
/**
@@ -221,7 +224,8 @@ public void setFixedDelayTasksList(List<IntervalTask> fixedDelayTasks) {
221
224
* @since 4.2
222
225
*/
223
226
public List <IntervalTask > getFixedDelayTaskList () {
224
- return (this .fixedDelayTasks != null ? Collections .unmodifiableList (this .fixedDelayTasks ) : Collections .emptyList ());
227
+ return (this .fixedDelayTasks != null ? Collections .unmodifiableList (this .fixedDelayTasks ) :
228
+ Collections .<IntervalTask >emptyList ());
225
229
}
226
230
227
231
/**
0 commit comments