diff options
author | Ascrod <32915892+Ascrod@users.noreply.github.com> | 2018-06-01 08:21:25 -0400 |
---|---|---|
committer | Ascrod <32915892+Ascrod@users.noreply.github.com> | 2018-06-01 08:21:25 -0400 |
commit | 04f7940bc24918a14b0c5fac72d1b60d4497dd0e (patch) | |
tree | 8e34ee0c39eae4cbdf261d6fb2ee2cfb4f6b2179 | |
parent | d87c1ea739da2f69cf0ff35dbe168519ae062f98 (diff) | |
download | UXP-04f7940bc24918a14b0c5fac72d1b60d4497dd0e.tar UXP-04f7940bc24918a14b0c5fac72d1b60d4497dd0e.tar.gz UXP-04f7940bc24918a14b0c5fac72d1b60d4497dd0e.tar.lz UXP-04f7940bc24918a14b0c5fac72d1b60d4497dd0e.tar.xz UXP-04f7940bc24918a14b0c5fac72d1b60d4497dd0e.zip |
Remove unneeded if condition from SelfSupportBackend module.
-rw-r--r-- | browser/modules/SelfSupportBackend.jsm | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/browser/modules/SelfSupportBackend.jsm b/browser/modules/SelfSupportBackend.jsm index 961a2af0a..0f34d813c 100644 --- a/browser/modules/SelfSupportBackend.jsm +++ b/browser/modules/SelfSupportBackend.jsm @@ -85,11 +85,8 @@ var SelfSupportBackendInternal = { return; } - // Make sure UITour is enabled. - if (true) { - this._log.config("init - Disabling SelfSupport because UITour is disabled."); - return; - } + this._log.config("init - Disabling SelfSupport because UITour is disabled."); + return; // Check the preferences to see if we want this to be active. if (!Preferences.get(PREF_ENABLED, true)) { |