| Index: sky/specs/modules.md
|
| diff --git a/sky/specs/modules.md b/sky/specs/modules.md
|
| index f20e0c7d70ee323270cf1ef12d1a914b208dbec4..b8df21f48f9d85ab7bed6c6aa295ffef60b3b4ca 100644
|
| --- a/sky/specs/modules.md
|
| +++ b/sky/specs/modules.md
|
| @@ -105,15 +105,6 @@ abstract class AbstractModule extends EventTarget {
|
| // if there is, then mark this tagname is broken, so that it acts as if it's not registered in the parser,
|
| // and, if this is the first time it was marked broken, log a console message regarding the issue
|
| // (mention the tag name but not the classes, so that it's not observable that this currently happens out of order)
|
| -
|
| - void init(LibraryMirror library) {
|
| - library.declarations.forEach((Symbol s, DeclarationMirror d) {
|
| - d.metadata.forEach((InstanceMirror i) {
|
| - if (i.reflectee is AutomaticMetadata)
|
| - i.reflectee.init(d, this);
|
| - });
|
| - });
|
| - }
|
| }
|
|
|
| class Module : AbstractModule {
|
|
|