Polishing and rebase
This commit is contained in:
committed by
Michael Minella
parent
b62cb184c0
commit
2e6868628b
@@ -187,8 +187,7 @@ public class JdbcTaskExecutionDao implements TaskExecutionDao {
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<TaskExecution> getTaskExecutionsByName(String taskName, final int start,
|
||||
final int count) {
|
||||
public List<TaskExecution> getTaskExecutionsByName(String taskName, final int start, final int count) {
|
||||
ResultSetExtractor<List<TaskExecution>> extractor =
|
||||
new ResultSetExtractor<List<TaskExecution>>() {
|
||||
|
||||
@@ -229,7 +228,6 @@ public class JdbcTaskExecutionDao implements TaskExecutionDao {
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
private String getQuery(String base) {
|
||||
return StringUtils.replace(base, "%PREFIX%", tablePrefix);
|
||||
}
|
||||
@@ -294,7 +292,6 @@ public class JdbcTaskExecutionDao implements TaskExecutionDao {
|
||||
taskExecution.setStatusCode(rs.getString("STATUS_CODE"));
|
||||
taskExecution.setTaskName(rs.getString("TASK_NAME"));
|
||||
taskExecution.setParameters(getTaskParameters(id));
|
||||
|
||||
return taskExecution;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user