diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-11-27 13:36:04 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-11-27 13:36:04 -0500 |
commit | aabd761ee9064f6a46703f234e016f31f6441fa0 (patch) | |
tree | 4e320d1a4b85c91337fa8e5591e066c7d31fbefc /ext/js/language | |
parent | 4da4827bcbcdd1ef163f635d9b29416ff272b0bb (diff) |
Remove unneeded references
Diffstat (limited to 'ext/js/language')
-rw-r--r-- | ext/js/language/dictionary-worker-handler.js | 1 | ||||
-rw-r--r-- | ext/js/language/dictionary-worker-media-loader.js | 2 | ||||
-rw-r--r-- | ext/js/language/translator.js | 1 |
3 files changed, 1 insertions, 3 deletions
diff --git a/ext/js/language/dictionary-worker-handler.js b/ext/js/language/dictionary-worker-handler.js index 8ac342b2..3a85cb71 100644 --- a/ext/js/language/dictionary-worker-handler.js +++ b/ext/js/language/dictionary-worker-handler.js @@ -16,7 +16,6 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -import {serializeError} from '../core.js'; import {DictionaryDatabase} from './dictionary-database.js'; import {DictionaryImporter} from './dictionary-importer.js'; import {DictionaryWorkerMediaLoader} from './dictionary-worker-media-loader.js'; diff --git a/ext/js/language/dictionary-worker-media-loader.js b/ext/js/language/dictionary-worker-media-loader.js index 9e3fd67e..2701389e 100644 --- a/ext/js/language/dictionary-worker-media-loader.js +++ b/ext/js/language/dictionary-worker-media-loader.js @@ -16,7 +16,7 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -import {deserializeError, generateId} from '../core.js'; +import {generateId} from '../core.js'; /** * Class used for loading and validating media from a worker thread diff --git a/ext/js/language/translator.js b/ext/js/language/translator.js index 9b01c1ff..67cc53c6 100644 --- a/ext/js/language/translator.js +++ b/ext/js/language/translator.js @@ -19,7 +19,6 @@ import {RegexUtil} from '../general/regex-util.js'; import {TextSourceMap} from '../general/text-source-map.js'; import {Deinflector} from './deinflector.js'; -import {DictionaryDatabase} from './dictionary-database.js'; /** * Class which finds term and kanji dictionary entries for text. |