Skip to content

Commit b3eda5b

Browse files
author
Petr Sramek
committed
Merge branch 'develop/1.0' of https://github.com/dropoutcoder/polyline-algorithm-csharp into develop/1.0
2 parents c7d415e + f8e6e6e commit b3eda5b

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/PolylineAlgorithm/InvalidPolylineException.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,7 @@ namespace PolylineAlgorithm;
1616
/// </summary>
1717
[SuppressMessage("Design", "CA1032:Implement standard exception constructors", Justification = "Internal use only.")]
1818
[DebuggerDisplay($"{nameof(InvalidPolylineException)}: {{ToString()}}")]
19-
public sealed class InvalidPolylineException : Exception
20-
21-
22-
{
19+
public sealed class InvalidPolylineException : Exception {
2320
private InvalidPolylineException(string message)
2421
: base(message) { }
2522

0 commit comments

Comments
 (0)