File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
tests/ImageSharp.Tests/Processing Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ public InvertXAndYSwizzler(Size sourceSize)
2222
2323 public Size DestinationSize { get ; }
2424
25- public void Transform ( Point point , out Point newPoint )
26- => newPoint = new Point ( point . Y , point . X ) ;
25+ public Point Transform ( Point point )
26+ => new Point ( point . Y , point . X ) ;
2727 }
2828
2929 [ Theory ]
Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ public InvertXAndYSwizzler(Size sourceSize)
1818
1919 public Size DestinationSize { get ; }
2020
21- public void Transform ( Point point , out Point newPoint )
22- => newPoint = new Point ( point . Y , point . X ) ;
21+ public Point Transform ( Point point )
22+ => new Point ( point . Y , point . X ) ;
2323 }
2424
2525 [ Fact ]
You can’t perform that action at this time.
0 commit comments