Skip to content

Commit fdddc05

Browse files
committed
removed excluede from coverage attr
1 parent 37053a6 commit fdddc05

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

src/PolylineAlgorithm/Polyline.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,23 +176,20 @@ public static Polyline FromMemory(ReadOnlyMemory<char> polyline) {
176176
/// </summary>
177177
/// <param name="polyline">The Unicode character array to convert.</param>
178178
/// <returns>The converted <see cref="Polyline"/> instance.</returns>
179-
[ExcludeFromCodeCoverage]
180179
public static explicit operator Polyline(char[] polyline) => FromCharArray(polyline);
181180

182181
/// <summary>
183182
/// Defines an explicit conversion from a string to a <see cref="Polyline"/>.
184183
/// </summary>
185184
/// <param name="polyline">The string to convert.</param>
186185
/// <returns>The converted <see cref="Polyline"/> instance.</returns>
187-
[ExcludeFromCodeCoverage]
188186
public static explicit operator Polyline(string polyline) => FromString(polyline);
189187

190188
/// <summary>
191189
/// Defines an explicit conversion from a read-only memory region to a <see cref="Polyline"/>.
192190
/// </summary>
193191
/// <param name="polyline">The read-only memory region to convert.</param>
194192
/// <returns>The converted <see cref="Polyline"/> instance.</returns>
195-
[ExcludeFromCodeCoverage]
196193
#pragma warning disable CA2225 // Operator overloads have named alternates
197194
public static explicit operator Polyline(ReadOnlyMemory<char> polyline) => FromMemory(polyline);
198195
#pragma warning restore CA2225 // Operator overloads have named alternates

0 commit comments

Comments
 (0)