Skip to content

Commit 75e9d9a

Browse files
committed
chore: updates public export of API
Signed-off-by: Vincent Biret <[email protected]>
1 parent a8c7e16 commit 75e9d9a

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

test/Microsoft.OpenApi.Tests/PublicApi/PublicApi.approved.txt

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1490,12 +1490,6 @@ namespace Microsoft.OpenApi.Reader
14901490
public static T Parse<T>(string input, Microsoft.OpenApi.OpenApiSpecVersion version, Microsoft.OpenApi.Models.OpenApiDocument openApiDocument, out Microsoft.OpenApi.Reader.OpenApiDiagnostic diagnostic, string format = null, Microsoft.OpenApi.Reader.OpenApiReaderSettings settings = null)
14911491
where T : Microsoft.OpenApi.Interfaces.IOpenApiElement { }
14921492
}
1493-
public static class OpenApiReaderRegistry
1494-
{
1495-
public static readonly Microsoft.OpenApi.Interfaces.IOpenApiReader DefaultReader;
1496-
public static Microsoft.OpenApi.Interfaces.IOpenApiReader GetReader(string format) { }
1497-
public static void RegisterReader(string format, Microsoft.OpenApi.Interfaces.IOpenApiReader reader) { }
1498-
}
14991493
public class OpenApiReaderSettings
15001494
{
15011495
public OpenApiReaderSettings() { }
@@ -1505,7 +1499,9 @@ namespace Microsoft.OpenApi.Reader
15051499
public System.Collections.Generic.Dictionary<string, System.Func<System.Text.Json.Nodes.JsonNode, Microsoft.OpenApi.OpenApiSpecVersion, Microsoft.OpenApi.Interfaces.IOpenApiExtension>> ExtensionParsers { get; set; }
15061500
public bool LeaveStreamOpen { get; set; }
15071501
public bool LoadExternalRefs { get; set; }
1502+
public System.Collections.Generic.Dictionary<string, Microsoft.OpenApi.Interfaces.IOpenApiReader> Readers { get; init; }
15081503
public Microsoft.OpenApi.Validations.ValidationRuleSet RuleSet { get; set; }
1504+
public void AddJsonReader() { }
15091505
public void AddMicrosoftExtensionParsers() { }
15101506
}
15111507
public static class OpenApiVersionExtensionMethods

0 commit comments

Comments
 (0)