Skip to content

Commit 422cdb2

Browse files
committed
Add public class access modifier
1 parent bf2d0fe commit 422cdb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Microsoft.OpenApi.Hidi/OpenApiService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
namespace Microsoft.OpenApi.Hidi
2020
{
21-
static class OpenApiService
21+
public static class OpenApiService
2222
{
2323
public static void ProcessOpenApiDocument(
2424
string input,
@@ -140,7 +140,7 @@ private static Stream GetStream(string input)
140140
/// </summary>
141141
/// <param name="stream"> A file stream.</param>
142142
/// <returns> A dictionary of request urls and http methods from a collection.</returns>
143-
private static Dictionary<string, List<string>> ParseJsonCollectionFile(Stream stream)
143+
public static Dictionary<string, List<string>> ParseJsonCollectionFile(Stream stream)
144144
{
145145
var requestUrls = new Dictionary<string, List<string>>();
146146

0 commit comments

Comments
 (0)