Skip to content

Commit aae0c00

Browse files
committed
Added copyright header
1 parent 267daff commit aae0c00

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/Microsoft.OpenApi/Expressions/CompositeExpression.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
using System;
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
3+
4+
using System;
25
using System.Collections.Generic;
36
using System.Linq;
47
using System.Text;
@@ -12,7 +15,7 @@ namespace Microsoft.OpenApi.Expressions
1215
/// </summary>
1316
public class CompositeExpression : RuntimeExpression
1417
{
15-
private string template;
18+
private readonly string template;
1619
private Regex expressionPattern = new Regex("{(?<exp>[^}]+)");
1720
/// <summary>
1821
/// Expressions embedded into string literal

0 commit comments

Comments
 (0)