Skip to content

Commit

Permalink
Trigger expected Qodana failure (incorrect indentation)
Browse files Browse the repository at this point in the history
  • Loading branch information
bkoelman committed Sep 17, 2023
1 parent 491ba6f commit 8001c87
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/JsonApiDotNetCore/Configuration/PageNumber.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@
namespace JsonApiDotNetCore.Configuration;

[PublicAPI]
public sealed class PageNumber : IEquatable<PageNumber>
{
public sealed class PageNumber : IEquatable<PageNumber> {
public static readonly PageNumber ValueOne = new(1);

public int OneBasedValue { get; }
public int OneBasedValue { get; }

public PageNumber(int oneBasedValue)
{
Expand Down

0 comments on commit 8001c87

Please sign in to comment.