diff options
| author | chick | 2020-08-14 19:47:53 -0700 |
|---|---|---|
| committer | Jack Koenig | 2020-08-14 19:47:53 -0700 |
| commit | 6fc742bfaf5ee508a34189400a1a7dbffe3f1cac (patch) | |
| tree | 2ed103ee80b0fba613c88a66af854ae9952610ce /src/main/scala/firrtl/graph/EdgeData.scala | |
| parent | b516293f703c4de86397862fee1897aded2ae140 (diff) | |
All of src/ formatted with scalafmt
Diffstat (limited to 'src/main/scala/firrtl/graph/EdgeData.scala')
| -rw-r--r-- | src/main/scala/firrtl/graph/EdgeData.scala | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/main/scala/firrtl/graph/EdgeData.scala b/src/main/scala/firrtl/graph/EdgeData.scala index 16990de0..6a63c3b9 100644 --- a/src/main/scala/firrtl/graph/EdgeData.scala +++ b/src/main/scala/firrtl/graph/EdgeData.scala @@ -6,11 +6,10 @@ import scala.collection.mutable /** * An exception that indicates that an edge cannot be found in a graph with edge data. - * + * * @note the vertex type is not captured as a type parameter, as it would be erased. */ -class EdgeNotFoundException(u: Any, v: Any) - extends IllegalArgumentException(s"Edge (${u}, ${v}) does not exist!") +class EdgeNotFoundException(u: Any, v: Any) extends IllegalArgumentException(s"Edge (${u}, ${v}) does not exist!") /** * Mixing this trait into a DiGraph indicates that each edge may be associated with an optional |
