aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/firrtl/Namespace.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/firrtl/Namespace.scala')
-rw-r--r--src/main/scala/firrtl/Namespace.scala6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/main/scala/firrtl/Namespace.scala b/src/main/scala/firrtl/Namespace.scala
index 11595ba3..bb358be6 100644
--- a/src/main/scala/firrtl/Namespace.scala
+++ b/src/main/scala/firrtl/Namespace.scala
@@ -3,7 +3,6 @@
package firrtl
import scala.collection.mutable
-import scala.collection.mutable.HashSet
import firrtl.ir._
class Namespace private {
@@ -39,8 +38,8 @@ class Namespace private {
def newTemp: String = newName(tempNamePrefix)
- /** Create a copy of the [[scala.collection.mutable.HashSet HashSet]] backing this [[Namespace]]
- * @return a copy of the underlying [[scala.collection.mutable.HashSet HashSet]]
+ /** Create a copy of the HashSet backing this [[Namespace]]
+ * @return a copy of the underlying HashSet
*/
def cloneUnderlying: mutable.HashSet[String] = namespace.clone
}
@@ -83,4 +82,3 @@ object Namespace {
namespace
}
}
-