From 97e3eedaf01a913378865a352619f98914719799 Mon Sep 17 00:00:00 2001 From: Nathan Moinvaziri Date: Fri, 16 Aug 2024 12:40:48 -0700 Subject: [PATCH] Fixed defined but never used warning --- js/Simple.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/Simple.js b/js/Simple.js index 0d50b00..4dc3134 100644 --- a/js/Simple.js +++ b/js/Simple.js @@ -107,7 +107,7 @@ Simple.prototype.setStringProperty = function(value) { /** * Starts a request for a value */ -Simple.prototype.startValueRequest = function(value) { +Simple.prototype.startValueRequest = function() { return this.invoke({ "method": "startValueRequest" });