Changeset 25edf9
- Timestamp:
- Oct 11, 2014, 3:00:50 PM (6 years ago)
- Branches:
- ng_0.9
- Children:
- d98906
- Parents:
- d8fb13
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
modules/vI_identityData.js
rd8fb13 r25edf9 217 217 this.comp.equals.fullName = (((this.fullName)?this.fullName.toLowerCase():null) == ((compareIdentityData.fullName)?compareIdentityData.fullName.toLowerCase():null)); 218 218 if (!this.comp.equals.fullName) { 219 Log.debug("fullName not equal ('" + ((this.fullName)?this.fullName.toLowerCase():null) + "' != '" + ((compareIdentityData.fullName)?compareIdentityData.fullName.toLowerCase():null) + "')");219 // Log.debug("fullName not equal ('" + ((this.fullName)?this.fullName.toLowerCase():null) + "' != '" + ((compareIdentityData.fullName)?compareIdentityData.fullName.toLowerCase():null) + "')"); 220 220 } 221 221 this.comp.equals.email = (((this.email)?this.email.toLowerCase():null) == ((compareIdentityData.email)?compareIdentityData.email.toLowerCase():null)); 222 222 if (!this.comp.equals.email) { 223 Log.debug("email not equal ('" + ((this.email)?this.email.toLowerCase():null) + "' != '" + ((compareIdentityData.email)?compareIdentityData.email.toLowerCase():null) + "')");223 // Log.debug("email not equal ('" + ((this.email)?this.email.toLowerCase():null) + "' != '" + ((compareIdentityData.email)?compareIdentityData.email.toLowerCase():null) + "')"); 224 224 } 225 225 … … 378 378 if (this.key == NO_SMTP_TAG || compareSmtpObj.key == NO_SMTP_TAG) return true; 379 379 if (this.keyNice != compareSmtpObj.keyNice) { 380 Log.debug("smtp not equal ('" + this.keyNice + "' != '" + compareSmtpObj.keyNice + "')");380 // Log.debug("smtp not equal ('" + this.keyNice + "' != '" + compareSmtpObj.keyNice + "')"); 381 381 } 382 382 return (this.keyNice == compareSmtpObj.keyNice); … … 419 419 if (!this.key || !compareIdObj.key) return true; 420 420 if (this.key != compareIdObj.key) { 421 Log.debug("id not equal ('" + this.key + "' != '" + compareIdObj.key + "')");421 // Log.debug("id not equal ('" + this.key + "' != '" + compareIdObj.key + "')"); 422 422 } 423 423 return (this.key == compareIdObj.key);
Note: See TracChangeset
for help on using the changeset viewer.