pmcf 4.25.21 → 4.25.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/host.mjs +1 -14
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "4.25.21",
3
+ "version": "4.25.22",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/host.mjs CHANGED
@@ -111,20 +111,7 @@ export class Host extends ServiceOwner {
111
111
  super.materializeExtends();
112
112
 
113
113
  for (const host of this.walkDirections(["extends"])) {
114
- for (const [name, service] of host.services) {
115
- const present = this._services.get(name);
116
- if (present) {
117
- /* console.log(
118
- "LINK",
119
- present.fullName,
120
- service.fullName,
121
- present.extends
122
- );*/
123
- present.extends.add(service);
124
- } else {
125
- this._services.set(name, service.forOwner(this));
126
- }
127
- }
114
+
128
115
 
129
116
  for (const [name, ni] of host.networkInterfaces) {
130
117
  const present = this._networkInterfaces.get(name);