aboutsummaryrefslogtreecommitdiff
path: root/dottydoc/src/dotty/tools/dottydoc/util/mutate.scala
diff options
context:
space:
mode:
Diffstat (limited to 'dottydoc/src/dotty/tools/dottydoc/util/mutate.scala')
-rw-r--r--dottydoc/src/dotty/tools/dottydoc/util/mutate.scala12
1 files changed, 0 insertions, 12 deletions
diff --git a/dottydoc/src/dotty/tools/dottydoc/util/mutate.scala b/dottydoc/src/dotty/tools/dottydoc/util/mutate.scala
index e02dc60af..a5a4dfec6 100644
--- a/dottydoc/src/dotty/tools/dottydoc/util/mutate.scala
+++ b/dottydoc/src/dotty/tools/dottydoc/util/mutate.scala
@@ -18,18 +18,6 @@ object setters {
case x: ValImpl => x.comment = to
}
-
- def setReturnValue(ent: Entity, ref: Reference) = ent match {
- case x: DefImpl => x.returnValue = ref
- case x: ValImpl => x.returnValue = ref
- case _ => ()
- }
-
- def setParamLists(ent: Entity, refs: List[ParamList]) = ent match {
- case x: DefImpl => x.paramLists = refs
- case _ => ()
- }
-
def setParent(ent: Entity, to: Entity): Unit = ent match {
case e: ClassImpl =>
e.parent = to