Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@
import lombok.Builder;
import lombok.Value;

/**
* @deprecated this was never used
*/
@Deprecated(forRemoval = true)
@Value
@Builder
public class ChainWorkerpool {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -526,6 +526,10 @@ Optional<TaskDescription> repeatGetTaskDescriptionFromChain(String chainTaskId,
return taskDescription != null ? Optional.of(taskDescription) : Optional.empty();
}

/**
* @deprecated single usage found in all code, directly call isTeeTask on getTaskDescription
*/
@Deprecated(forRemoval = true)
public boolean isTeeTask(String chainTaskId) {
final TaskDescription taskDescription = getTaskDescription(chainTaskId);

Expand Down