File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
src/Microsoft.OpenApi/Any Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -10,12 +10,21 @@ public class OpenApiString : OpenApiPrimitive<string>
10
10
{
11
11
private bool isExplicit ;
12
12
13
+ /// <summary>
14
+ /// Initializes the <see cref="OpenApiString"/> class.
15
+ /// </summary>
16
+ /// <param name="value"></param>
17
+ public OpenApiString ( string value )
18
+ : this ( value , false )
19
+ {
20
+ }
21
+
13
22
/// <summary>
14
23
/// Initializes the <see cref="OpenApiString"/> class.
15
24
/// </summary>
16
25
/// <param name="value"></param>
17
26
/// <param name="isExplicit">Used to indicate if a string is quoted.</param>
18
- public OpenApiString ( string value , bool isExplicit = false )
27
+ public OpenApiString ( string value , bool isExplicit )
19
28
: base ( value )
20
29
{
21
30
this . isExplicit = isExplicit ;
You can’t perform that action at this time.
0 commit comments