From af2076df24401688e271afd8be08e7ad013f9949 Mon Sep 17 00:00:00 2001 From: yesji <55633427+yesji@users.noreply.github.com> Date: Fri, 11 Oct 2019 22:17:54 +0530 Subject: [PATCH] Fixed "Module is defined but never used" issue --- Server/src/main/resources/static/js/ace/theme-chrome.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/src/main/resources/static/js/ace/theme-chrome.js b/Server/src/main/resources/static/js/ace/theme-chrome.js index 4485d7f..cade712 100644 --- a/Server/src/main/resources/static/js/ace/theme-chrome.js +++ b/Server/src/main/resources/static/js/ace/theme-chrome.js @@ -1,4 +1,4 @@ -define("ace/theme/chrome", ["require", "exports", "module", "ace/lib/dom"], function (require, exports, module) { +define("ace/theme/chrome", ["require", "exports", "ace/lib/dom"], function (require, exports) { exports.isDark = false; exports.cssClass = "ace-chrome";