Skip to content

Commit

Permalink
Cleanup and fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
martintmk committed Apr 11, 2023
1 parent 818d24a commit d8fc102
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
using System;
using Polly.Builder;
using Polly.Retry;

namespace Polly.Retry;
namespace Polly;

/// <summary>
/// Retry extension methods for the <see cref="ResilienceStrategyBuilder"/>.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
using System;
using Polly.Builder;
using Polly.Timeout;

namespace Polly.Timeout;
namespace Polly;

/// <summary>
/// Extension methods for adding timeouts to a <see cref="ResilienceStrategyBuilder"/>.
Expand Down
2 changes: 2 additions & 0 deletions src/Polly.Core/Utils/ValidationHelper.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Diagnostics.CodeAnalysis;
using System.Text;

namespace Polly.Utils;

[ExcludeFromCodeCoverage]
internal static class ValidationHelper
{
public static void ValidateObject(object instance, string mainMessage)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
using System.Threading.RateLimiting;
using Polly.Builder;
using Polly.RateLimiting;
using Polly.Utils;

namespace Polly.RateLimiting;
namespace Polly;

/// <summary>
/// The rate limiter extensions for <see cref="ResilienceStrategyBuilder"/>.
Expand Down

0 comments on commit d8fc102

Please sign in to comment.