Skip to content

Commit e429a56

Browse files
author
Petr Sramek
committed
kxjzgasiu
1 parent 6327ed2 commit e429a56

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/format-cs-files.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ jobs:
5757
echo ${{ fromJSON(steps.git.outputs.has-changes) }}
5858
echo ${{ steps.git.outputs.has-changes == '1' }}
5959
echo ${{ fromJSON(steps.git.outputs.has-changes) == 1 }}
60+
echo ${{ fromJSON(steps.git.outputs.has-changes) == '1' }}
6061
git add .
6162
git config user.name "$(git log -n 1 --pretty=format:%an)"
6263
git config user.email "$(git log -n 1 --pretty=format:%ae)"

src/PolylineAlgorithm/InvalidPolylineException.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ 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 {
19+
public sealed class InvalidPolylineException : Exception
20+
21+
22+
{
2023
private InvalidPolylineException(string message)
2124
: base(message) { }
2225

0 commit comments

Comments
 (0)