From 5decb4079814be1fef10a02bf5518ec4e29f37dd Mon Sep 17 00:00:00 2001 From: Schuyler Eldridge Date: Fri, 22 Feb 2019 17:45:26 -0500 Subject: Fix almost all Scaladoc warnings This fixes all Scaladoc warnings except for those trying to link to Java. Signed-off-by: Schuyler Eldridge --- src/main/scala/firrtl/Namespace.scala | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/main/scala/firrtl/Namespace.scala') 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 } } - -- cgit v1.2.3