From fe1d0bda793595a1718cde7798e2bf52fe3b2f48 Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Wed, 22 Jun 2016 14:13:51 +1000 Subject: [PATCH] Remove line number [skip ci] Former-commit-id: c223456744511729aa1ff3d62dada2d26da89068 Former-commit-id: 8dc9e9e427a3e1d6c62fa1e1bba765ec294e86ba Former-commit-id: ee08889af7f086f0aeab2a1eb9873ba480075d68 --- src/ImageProcessorCore/IImageBase.cs | 2 +- src/ImageProcessorCore/ImageBase.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 {