aboutsummaryrefslogtreecommitdiffstats
path: root/language-web/src/main/js/utils/PendingTask.ts
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2021-10-30 14:36:39 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2021-10-31 19:26:14 +0100
commitdef79f104999710953124c77241c95a7726791f0 (patch)
treef1096b07aa6c67d9c986df025400d8e555ca8a95 /language-web/src/main/js/utils/PendingTask.ts
parentfeat(web): server-side content assist filtering (diff)
downloadrefinery-def79f104999710953124c77241c95a7726791f0.tar.gz
refinery-def79f104999710953124c77241c95a7726791f0.tar.zst
refinery-def79f104999710953124c77241c95a7726791f0.zip
chore(web): move logger to utils/
Diffstat (limited to 'language-web/src/main/js/utils/PendingTask.ts')
-rw-r--r--language-web/src/main/js/utils/PendingTask.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/language-web/src/main/js/utils/PendingTask.ts b/language-web/src/main/js/utils/PendingTask.ts
index aa2b11b0..de59a99b 100644
--- a/language-web/src/main/js/utils/PendingTask.ts
+++ b/language-web/src/main/js/utils/PendingTask.ts
@@ -1,6 +1,6 @@
1import { getLogger } from '../logging'; 1import { getLogger } from './logger';
2 2
3const log = getLogger('PendingTask'); 3const log = getLogger('utils.PendingTask');
4 4
5export class PendingTask<T> { 5export class PendingTask<T> {
6 private readonly resolveCallback: (value: T) => void; 6 private readonly resolveCallback: (value: T) => void;