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 bf2d0fe commit 422cdb2Copy full SHA for 422cdb2
src/Microsoft.OpenApi.Hidi/OpenApiService.cs
@@ -18,7 +18,7 @@
18
19
namespace Microsoft.OpenApi.Hidi
20
{
21
- static class OpenApiService
+ public static class OpenApiService
22
23
public static void ProcessOpenApiDocument(
24
string input,
@@ -140,7 +140,7 @@ private static Stream GetStream(string input)
140
/// </summary>
141
/// <param name="stream"> A file stream.</param>
142
/// <returns> A dictionary of request urls and http methods from a collection.</returns>
143
- private static Dictionary<string, List<string>> ParseJsonCollectionFile(Stream stream)
+ public static Dictionary<string, List<string>> ParseJsonCollectionFile(Stream stream)
144
145
var requestUrls = new Dictionary<string, List<string>>();
146
0 commit comments