Browse Source

[SL.Core] Format long statement onto multiple lines

af/octree-no-pixelmap
Jason Nelson 8 years ago
parent
commit
9df8d07b23
  1. 6
      src/SixLabors.Core/Primitives/RectangleF.cs

6
src/SixLabors.Core/Primitives/RectangleF.cs

@ -376,6 +376,10 @@ namespace SixLabors.Primitives
/// <inheritdoc/>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public bool Equals(RectangleF other) => this.X.Equals(other.X) && this.Y.Equals(other.Y) && this.Width.Equals(other.Width) && this.Height.Equals(other.Height);
public bool Equals(RectangleF other) =>
this.X.Equals(other.X) &&
this.Y.Equals(other.Y) &&
this.Width.Equals(other.Width) &&
this.Height.Equals(other.Height);
}
}
Loading…
Cancel
Save