aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/util/Attachment.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotty/tools/dotc/util/Attachment.scala')
-rw-r--r--src/dotty/tools/dotc/util/Attachment.scala4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/dotty/tools/dotc/util/Attachment.scala b/src/dotty/tools/dotc/util/Attachment.scala
index 8088b4cd0..20facfd97 100644
--- a/src/dotty/tools/dotc/util/Attachment.scala
+++ b/src/dotty/tools/dotc/util/Attachment.scala
@@ -4,9 +4,7 @@ package dotty.tools.dotc.util
* adding, removing and lookup of attachments. Attachments are typed key/value pairs.
*/
object Attachment {
-
- /** The class of keys for attachments yielding values of type V */
- class Key[+V]
+ import Property.Key
/** An implementation trait for attachments.
* Clients should inherit from Container instead.