Bug 1735562 - Remove Nightly only gates for multiple cc-number field capture and autofill. r=sgalich

Differential Revision: https://phabricator.services.mozilla.com/D128642
This commit is contained in:
Tim Giles Jr 2021-10-18 13:43:49 +00:00
parent a9e674d68d
commit 74623e87d4
2 changed files with 3 additions and 11 deletions

View file

@ -627,10 +627,7 @@ class FormAutofillSection {
data.flowId = this.flowId;
}
let condensedDetails = this.fieldDetails;
// This NIGHTLY_BUILD statement should be removed as part of Bug 1735562 once the feature is stable
if (AppConstants.NIGHTLY_BUILD) {
this._condenseMultipleCCNumberFields(condensedDetails);
}
this._condenseMultipleCCNumberFields(condensedDetails);
condensedDetails.forEach(detail => {
let element = detail.elementWeakRef.get();

View file

@ -17,10 +17,7 @@ const { XPCOMUtils } = ChromeUtils.import(
const { FormAutofill } = ChromeUtils.import(
"resource://autofill/FormAutofill.jsm"
);
// This AppConstants import can be removed as part of Bug 1735562
const { AppConstants } = ChromeUtils.import(
"resource://gre/modules/AppConstants.jsm"
);
ChromeUtils.defineModuleGetter(
this,
"FormAutofillUtils",
@ -226,9 +223,7 @@ class FieldScanner {
);
}
// This NIGHTLY_BUILD statement should be removed as part of Bug 1735562 once the feature is stable
if (AppConstants.NIGHTLY_BUILD) {
this._classifyMultipleCCNumberFields();
}
this._classifyMultipleCCNumberFields();
}
/**