diff --git a/src/ImageProcessorCore/IImageBase.cs b/src/ImageProcessorCore/IImageBase.cs index 0e8756f1e..c9bd8d958 100644 --- a/src/ImageProcessorCore/IImageBase.cs +++ b/src/ImageProcessorCore/IImageBase.cs @@ -68,7 +68,7 @@ namespace ImageProcessorCore /// than zero and smaller than the width of the pixel. /// /// The at the specified position. - Color this[int x, int y, [CallerLineNumber] int line = 0] { get; set; } + Color this[int x, int y] { get; set; } /// /// Sets the pixel array of the image to the given value. diff --git a/src/ImageProcessorCore/ImageBase.cs b/src/ImageProcessorCore/ImageBase.cs index a22ec958b..42fd85fd0 100644 --- a/src/ImageProcessorCore/ImageBase.cs +++ b/src/ImageProcessorCore/ImageBase.cs @@ -135,7 +135,7 @@ namespace ImageProcessorCore public int FrameDelay { get; set; } /// - public Color this[int x, int y, [CallerLineNumber] int line = 0] + public Color this[int x, int y] { get {