Skip to content

Commit a7188f0

Browse files
authored
Add trailing newlines to shared code (Azure#36250)
Without newlines, shared files may break linting rules in the autorest.csharp repo
1 parent 1f7f3fa commit a7188f0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sdk/core/Azure.Core/src/Shared/FixedDelayWithNoJitterStrategy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ public FixedDelayWithNoJitterStrategy(TimeSpan? suggestedDelay = default) : base
2323
protected override TimeSpan GetNextDelayCore(Response? response, int retryNumber) =>
2424
_delay;
2525
}
26-
}
26+
}

sdk/core/Azure.Core/src/Shared/SequentialDelayStrategy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ protected override TimeSpan GetNextDelayCore(Response? response, int retryNumber
3535
return index >= _pollingSequence.Length ? _maxDelay : _pollingSequence[index];
3636
}
3737
}
38-
}
38+
}

0 commit comments

Comments
 (0)