Browse Source

Fix Intersect missing nullable return type

pull/8439/head
Luis von der Eltz 4 years ago
parent
commit
9cea09caa2
  1. 2
      src/Avalonia.Base/Platform/IGeometryImpl.cs

2
src/Avalonia.Base/Platform/IGeometryImpl.cs

@ -39,7 +39,7 @@ namespace Avalonia.Platform
/// </summary>
/// <param name="geometry">The other geometry.</param>
/// <returns>A new <see cref="IGeometryImpl"/> representing the intersection.</returns>
IGeometryImpl Intersect(IGeometryImpl geometry);
IGeometryImpl? Intersect(IGeometryImpl geometry);
/// <summary>
/// Indicates whether the geometry's stroke contains the specified point.

Loading…
Cancel
Save