Skip to content

Commit

Permalink
Remove unneeded error type
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-goral committed Jun 11, 2021
1 parent 923854b commit 26e06a6
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,6 @@ object Parallel {
object DependenciesError {
data class Missing(val data: TypeDependencies) : Error("Missing dependencies $data")
data class Duplicate(val data: DuplicateDependencies) : Error("Duplicate dependencies $data")
data class NoEntryPoint(val initial: Set<Type<*>>, val tasks: TypeDependencies) :
Error("No entry points in tasks $tasks with initial state $initial")

data class Cycles(val data: List<List<Type<*>>>) : Error("Found cycles in graph $data")
}
}
Expand Down

0 comments on commit 26e06a6

Please sign in to comment.