diff --git a/src/observed-properties-mixin.js b/src/observed-properties-mixin.js index 04bf568..fd4610b 100644 --- a/src/observed-properties-mixin.js +++ b/src/observed-properties-mixin.js @@ -52,7 +52,6 @@ export const ObservedProperties = (SuperClass) => class extends SuperClass { static __propertyValueChanged(propName, oldValue, newValue) { if(oldValue === newValue) return; - try { if(JSON.stringify(oldValue) === JSON.stringify(newValue)) return; } catch(e) {}; this.propertyChangedCallback && this.propertyChangedCallback(propName, oldValue, newValue); }