summaryrefslogtreecommitdiffstats
path: root/devtools/client/dom/content
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/dom/content')
-rw-r--r--devtools/client/dom/content/dom-decorator.js2
-rw-r--r--devtools/client/dom/content/reducers/grips.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/devtools/client/dom/content/dom-decorator.js b/devtools/client/dom/content/dom-decorator.js
index a711a95d83..625caaf55b 100644
--- a/devtools/client/dom/content/dom-decorator.js
+++ b/devtools/client/dom/content/dom-decorator.js
@@ -41,7 +41,7 @@ DomDecorator.prototype = {
* Return custom React template for specified object. The template
* might depend on specified column.
*/
- getValueRep(value, colId) {},
+ getValueRep() {},
};
// Exports from this module
diff --git a/devtools/client/dom/content/reducers/grips.js b/devtools/client/dom/content/reducers/grips.js
index 1413baa1ce..f5871d59dd 100644
--- a/devtools/client/dom/content/reducers/grips.js
+++ b/devtools/client/dom/content/reducers/grips.js
@@ -36,7 +36,7 @@ function grips(state = getInitialState(), action) {
/**
* Handle requestProperties action
*/
-function onRequestProperties(state, action) {
+function onRequestProperties(state) {
return state;
}