From ec49b1d7a54d3b28076e44848e6acad032f33588 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim=20D=C3=BCsterhus?= Date: Fri, 5 Feb 2021 16:06:56 +0100 Subject: [PATCH] Mark Core/Template#compiled as readonly --- ts/WoltLabSuite/Core/Template.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/WoltLabSuite/Core/Template.ts b/ts/WoltLabSuite/Core/Template.ts index 204ac79b20..b318004128 100644 --- a/ts/WoltLabSuite/Core/Template.ts +++ b/ts/WoltLabSuite/Core/Template.ts @@ -24,7 +24,7 @@ parser.Parser = Parser; parser = new Parser();*/ class Template { - private compiled: CompiledTemplate; + private readonly compiled: CompiledTemplate; constructor(template: string) { try { -- 2.20.1