refactoring

This commit is contained in:
azivner
2018-05-22 22:22:15 -04:00
parent 94dabb81f6
commit 0ce5caefe8
10 changed files with 11 additions and 10 deletions

View File

@@ -17,7 +17,7 @@ class Entity {
let contentToHash = "";
for (const propertyName of this.constructor.syncedProperties) {
for (const propertyName of this.constructor.hashedProperties) {
contentToHash += "|" + this[propertyName];
}