We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 267daff commit aae0c00Copy full SHA for aae0c00
src/Microsoft.OpenApi/Expressions/CompositeExpression.cs
@@ -1,4 +1,7 @@
1
-using System;
+// Copyright (c) Microsoft Corporation. All rights reserved.
2
+// Licensed under the MIT license.
3
+
4
+using System;
5
using System.Collections.Generic;
6
using System.Linq;
7
using System.Text;
@@ -12,7 +15,7 @@ namespace Microsoft.OpenApi.Expressions
12
15
/// </summary>
13
16
public class CompositeExpression : RuntimeExpression
14
17
{
- private string template;
18
+ private readonly string template;
19
private Regex expressionPattern = new Regex("{(?<exp>[^}]+)");
20
/// <summary>
21
/// Expressions embedded into string literal
0 commit comments