mirror of https://github.com/sbt/sbt.git
Renamed per review
This commit is contained in:
parent
03c3c5cf08
commit
60fa2b842a
|
|
@ -30,7 +30,7 @@ object DotGraph {
|
|||
def apply(relations: Relations, outputDir: File, sourceToString: File => String, externalToString: File => String): Unit = {
|
||||
def file(name: String) = new File(outputDir, name)
|
||||
IO.createDirectory(outputDir)
|
||||
generateGraph(file("int-source-deps"), "dependencies", relations.internalClassDep, identity[String], identity[String])
|
||||
generateGraph(file("int-class-deps"), "dependencies", relations.internalClassDep, identity[String], identity[String])
|
||||
generateGraph(file("binary-dependencies"), "externalDependencies", relations.binaryDep, externalToString, sourceToString)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue