@@ -1637,7 +1637,7 @@ public IMagickImage<QuantumType> CloneAndMutate(Action<IMagickImageCloneMutator<
16371637 /// <param name="geometry">The area to clone.</param>
16381638 /// <returns>A clone of the current image.</returns>
16391639 /// <exception cref="MagickException">Thrown when an error is raised by ImageMagick.</exception>
1640- [ Obsolete ( $ "This property will be removed in the next major release, use { nameof ( CloneArea ) } instead.") ]
1640+ [ Obsolete ( $ "This method will be removed in the next major release, use { nameof ( CloneArea ) } instead.") ]
16411641 public IMagickImage < QuantumType > Clone ( IMagickGeometry geometry )
16421642 => CloneArea ( geometry ) ;
16431643
@@ -1647,7 +1647,7 @@ public IMagickImage<QuantumType> Clone(IMagickGeometry geometry)
16471647 /// <param name="width">The width of the area to clone.</param>
16481648 /// <param name="height">The height of the area to clone.</param>
16491649 /// <returns>A clone of the current image.</returns>
1650- [ Obsolete ( $ "This property will be removed in the next major release, use { nameof ( CloneArea ) } instead.") ]
1650+ [ Obsolete ( $ "This method will be removed in the next major release, use { nameof ( CloneArea ) } instead.") ]
16511651 public IMagickImage < QuantumType > Clone ( uint width , uint height )
16521652 => CloneArea ( new MagickGeometry ( width , height ) ) ;
16531653
@@ -1659,7 +1659,7 @@ public IMagickImage<QuantumType> Clone(uint width, uint height)
16591659 /// <param name="width">The width of the area to clone.</param>
16601660 /// <param name="height">The height of the area to clone.</param>
16611661 /// <returns>A clone of the current image.</returns>
1662- [ Obsolete ( $ "This property will be removed in the next major release, use { nameof ( CloneArea ) } instead.") ]
1662+ [ Obsolete ( $ "This method will be removed in the next major release, use { nameof ( CloneArea ) } instead.") ]
16631663 public IMagickImage < QuantumType > Clone ( int x , int y , uint width , uint height )
16641664 => CloneArea ( new MagickGeometry ( x , y , width , height ) ) ;
16651665
0 commit comments