aboutsummaryrefslogtreecommitdiffstats
path: root/language-web/src/main/js/xtext/ValidationService.ts
diff options
context:
space:
mode:
Diffstat (limited to 'language-web/src/main/js/xtext/ValidationService.ts')
-rw-r--r--language-web/src/main/js/xtext/ValidationService.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/language-web/src/main/js/xtext/ValidationService.ts b/language-web/src/main/js/xtext/ValidationService.ts
index 31c8f716..8e4934ac 100644
--- a/language-web/src/main/js/xtext/ValidationService.ts
+++ b/language-web/src/main/js/xtext/ValidationService.ts
@@ -8,9 +8,9 @@ import { isValidationResult } from './xtextServiceResults';
8const log = getLogger('xtext.ValidationService'); 8const log = getLogger('xtext.ValidationService');
9 9
10export class ValidationService { 10export class ValidationService {
11 private store: EditorStore; 11 private readonly store: EditorStore;
12 12
13 private updateService: UpdateService; 13 private readonly updateService: UpdateService;
14 14
15 constructor(store: EditorStore, updateService: UpdateService) { 15 constructor(store: EditorStore, updateService: UpdateService) {
16 this.store = store; 16 this.store = store;