From 1819a7172825147ee43b9425cc0e691cdfe8a239 Mon Sep 17 00:00:00 2001 From: Martijn Laarman Date: Thu, 4 Apr 2024 14:33:54 +0200 Subject: [PATCH] fix trailing semicolon on newline --- .../Elastic.CommonSchema.Generator/Projection/IndexTemplate.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/Elastic.CommonSchema.Generator/Projection/IndexTemplate.cs b/tools/Elastic.CommonSchema.Generator/Projection/IndexTemplate.cs index 3b460b76..0adc9f62 100644 --- a/tools/Elastic.CommonSchema.Generator/Projection/IndexTemplate.cs +++ b/tools/Elastic.CommonSchema.Generator/Projection/IndexTemplate.cs @@ -35,8 +35,7 @@ public IndexTemplate(string name, string template, string schemaVersion) .Replace("\"limit\": 2000", "\"limit\": 2500") .Replace("\"", "\"\"") .Replace("_vulnerability\"\"", "_vulnerability\"\"\" + userComponents + @\"") - .Replace("try-ecs-*", "\" + indexPattern + @\"") - ; + .Replace("try-ecs-*", "\" + indexPattern + @\""); } } }