summaryrefslogtreecommitdiffstats
path: root/application/palemoon/components
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2019-05-09 14:21:18 -0400
committerMatt A. Tobin <email@mattatobin.com>2019-05-09 14:21:18 -0400
commit5d119ce85efb17b6f9b4dff60e937f1312e717b3 (patch)
tree05cecfcf4b0f465ac355f991b1c7c02cab536167 /application/palemoon/components
parentfc937d1eec4b7c9c2fc5a85374b25e0dfa5cf4ab (diff)
downloadUXP-5d119ce85efb17b6f9b4dff60e937f1312e717b3.tar
UXP-5d119ce85efb17b6f9b4dff60e937f1312e717b3.tar.gz
UXP-5d119ce85efb17b6f9b4dff60e937f1312e717b3.tar.lz
UXP-5d119ce85efb17b6f9b4dff60e937f1312e717b3.tar.xz
UXP-5d119ce85efb17b6f9b4dff60e937f1312e717b3.zip
Issue #1083 - Deprecate FUEL extension helper javascript library
Diffstat (limited to 'application/palemoon/components')
-rw-r--r--application/palemoon/components/fuel/fuelApplication.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/application/palemoon/components/fuel/fuelApplication.js b/application/palemoon/components/fuel/fuelApplication.js
index 017813143..bc3a091ea 100644
--- a/application/palemoon/components/fuel/fuelApplication.js
+++ b/application/palemoon/components/fuel/fuelApplication.js
@@ -6,6 +6,8 @@ const Ci = Components.interfaces;
const Cc = Components.classes;
Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
+XPCOMUtils.defineLazyModuleGetter(this, "Deprecated",
+ "resource://gre/modules/Deprecated.jsm");
const APPLICATION_CID = Components.ID("fe74cf80-aa2d-11db-abbd-0800200c9a66");
const APPLICATION_CONTRACTID = "@mozilla.org/fuel/application;1";
@@ -734,6 +736,8 @@ var ApplicationFactory = {
//=================================================
// Application constructor
function Application() {
+ Deprecated.warning("FUEL is deprecated, you should use the standard Toolkit API instead.",
+ "https://github.com/MoonchildProductions/UXP/issues/1083");
this.initToolkitHelpers();
}