Skip to content

Commit 892ed91

Browse files
committed
Call base constructor
1 parent 20a0c04 commit 892ed91

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Microsoft.OpenApi/Models/OpenApiPaths.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public OpenApiPaths() {}
1616
/// <summary>
1717
/// Initializes a copy of <see cref="OpenApiPaths"/> object
1818
/// </summary>
19-
public OpenApiPaths(OpenApiPaths paths) {}
20-
19+
/// <param name="paths">The <see cref="OpenApiPaths"/>.</param>
20+
public OpenApiPaths(OpenApiPaths paths) : base(dictionary: paths) {}
2121
}
2222
}

0 commit comments

Comments
 (0)