@xviewer.js/core 1.0.0-alpha.11 → 1.0.0-alpha.13

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/dist/main.js CHANGED
@@ -1188,10 +1188,10 @@ typeof SuppressedError === "function" ? SuppressedError : function (error, suppr
1188
1188
 
1189
1189
  class PropertyManager {
1190
1190
  static _getProperties(target) {
1191
- return this._propertiesMap.get(target.constructor);
1191
+ return PropertyManager._propertiesMap.get(target.constructor);
1192
1192
  }
1193
1193
  static _hasProperties(target) {
1194
- return this._propertiesMap.has(target.constructor);
1194
+ return PropertyManager._propertiesMap.has(target.constructor);
1195
1195
  }
1196
1196
  static _getMergedProperties(target) {
1197
1197
  let props = null;