Skip to content

Commit

Permalink
Remove Deprecated Constructor from DefaultTaskExecutionInfoService
Browse files Browse the repository at this point in the history
resolves #6020

Signed-off-by: Glenn Renfro <[email protected]>
  • Loading branch information
cppwfs committed Nov 5, 2024
1 parent 4571f8d commit e260fca
Showing 1 changed file with 0 additions and 32 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,38 +92,6 @@ public class DefaultTaskExecutionInfoService implements TaskExecutionInfoService

private final ComposedTaskRunnerConfigurationProperties composedTaskRunnerConfigurationProperties;

/**
* Initializes the {@link DefaultTaskExecutionInfoService}.
*
* @param dataSourceProperties the data source properties.
* @param appRegistryService URI registry this service will use to look up app URIs.
* @param taskExplorer the explorer this service will use to lookup task executions
* @param taskDefinitionRepository the {@link TaskDefinitionRepository} this service will
* use for task CRUD operations.
* @param taskConfigurationProperties the properties used to define the behavior of tasks
* @param launcherRepository the launcher repository
* @param taskPlatforms the task platforms
*/
@Deprecated
public DefaultTaskExecutionInfoService(
DataSourceProperties dataSourceProperties,
AppRegistryService appRegistryService,
DataflowTaskExplorer taskExplorer,
TaskDefinitionRepository taskDefinitionRepository,
TaskConfigurationProperties taskConfigurationProperties,
LauncherRepository launcherRepository,
List<TaskPlatform> taskPlatforms
) {
this(dataSourceProperties,
appRegistryService,
taskExplorer,
taskDefinitionRepository,
taskConfigurationProperties,
launcherRepository,
taskPlatforms,
null);
}

/**
* Initializes the {@link DefaultTaskExecutionInfoService}.
*
Expand Down

0 comments on commit e260fca

Please sign in to comment.