Skip to content

Commit

Permalink
remove workflow cache checker
Browse files Browse the repository at this point in the history
  • Loading branch information
Yicong-Huang committed Dec 29, 2024
1 parent c7ec80b commit 0cd9973
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 114 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import org.jgrapht.util.SupplierUtil

import java.util
import scala.collection.mutable.ArrayBuffer
import scala.jdk.CollectionConverters.SetHasAsScala
import scala.util.{Failure, Success, Try}

object LogicalPlan {
Expand Down Expand Up @@ -65,14 +64,6 @@ case class LogicalPlan(
.filter(op => jgraphtDag.outDegreeOf(op) == 0)
.toList

def getUpstreamOps(opId: OperatorIdentity): List[LogicalOp] = {
jgraphtDag
.incomingEdgesOf(opId)
.asScala
.map(e => operatorMap(e.fromOpId))
.toList
}

def getUpstreamLinks(opId: OperatorIdentity): List[LogicalLink] = {
links.filter(l => l.toOpId == opId)
}
Expand Down

0 comments on commit 0cd9973

Please sign in to comment.