Skip to content

Commit

Permalink
chore(composition): code style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmed605 committed Nov 25, 2024
1 parent ec1426a commit 92671b2
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ public SkiaGeometrySource2D Transform(SKMatrix matrix)
public bool Contains(float x, float y) => _geometry.Contains(x, y);

public SkiaGeometrySource2D Op(SkiaGeometrySource2D other, SKPathOp op) => new(_geometry.Op(other._geometry, op));
/// <remarks>

/// <remarks>
/// DO NOT MODIFY THIS SKPath. CREATE A NEW SkiaGeometrySource2D INSTEAD.
/// This can lead to nasty invalidation bugs where the SKPath changes without notifying anyone.
/// </remarks>
public SKPath Geometry => _geometry;

public void Dispose() => Geometry.Dispose();

#endregion

public void Dispose() => Geometry.Dispose();
}
}

0 comments on commit 92671b2

Please sign in to comment.