pmcf 6.2.3 → 6.2.5

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "6.2.3",
3
+ "version": "6.2.5",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -188,7 +188,7 @@ export class InitializationContext {
188
188
  return assign(attribute, owner, this.read(object, data));
189
189
  }
190
190
 
191
- this.error(`No attribute to assign ${type.name} to ${owner.fullName}`);
191
+ this.error(`No attribute to assign ${type.name} to ${owner.fullName}(${owner.typeName})`);
192
192
  }
193
193
 
194
194
  async loadAll() {
package/src/service.mjs CHANGED
@@ -8,7 +8,6 @@ export class Service extends CoreService {
8
8
  };
9
9
  static {
10
10
  addType(this);
11
-
12
11
  setBaseService(this);
13
12
  }
14
13