Lucene.Net.Analysis.Stempel.RectangularArrays: changed parameter names to camelCase
Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/49e5b7a2 Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/49e5b7a2 Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/49e5b7a2 Branch: refs/heads/api-work Commit: 49e5b7a248096ebfae3fec9f5bd5f8c30920a9fb Parents: 87f05e9 Author: Shad Storhaug <[email protected]> Authored: Wed Feb 1 17:07:52 2017 +0700 Committer: Shad Storhaug <[email protected]> Committed: Wed Feb 1 17:07:52 2017 +0700 ---------------------------------------------------------------------- .../RectangularArrays.cs | 24 ++++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/49e5b7a2/src/Lucene.Net.Analysis.Stempel/RectangularArrays.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Analysis.Stempel/RectangularArrays.cs b/src/Lucene.Net.Analysis.Stempel/RectangularArrays.cs index 25acdf2..09fe264 100644 --- a/src/Lucene.Net.Analysis.Stempel/RectangularArrays.cs +++ b/src/Lucene.Net.Analysis.Stempel/RectangularArrays.cs @@ -10,17 +10,17 @@ using Lucene.Net.Util; internal static partial class RectangularArrays { - internal static int[][] ReturnRectangularIntArray(int Size1, int Size2) + internal static int[][] ReturnRectangularIntArray(int size1, int size2) { int[][] Array; - if (Size1 > -1) + if (size1 > -1) { - Array = new int[Size1][]; - if (Size2 > -1) + Array = new int[size1][]; + if (size2 > -1) { - for (int Array1 = 0; Array1 < Size1; Array1++) + for (int Array1 = 0; Array1 < size1; Array1++) { - Array[Array1] = new int[Size2]; + Array[Array1] = new int[size2]; } } } @@ -30,17 +30,17 @@ internal static partial class RectangularArrays return Array; } - internal static BytesRef[][] ReturnRectangularBytesRefArray(int Size1, int Size2) + internal static BytesRef[][] ReturnRectangularBytesRefArray(int size1, int size2) { BytesRef[][] Array; - if (Size1 > -1) + if (size1 > -1) { - Array = new BytesRef[Size1][]; - if (Size2 > -1) + Array = new BytesRef[size1][]; + if (size2 > -1) { - for (int Array1 = 0; Array1 < Size1; Array1++) + for (int Array1 = 0; Array1 < size1; Array1++) { - Array[Array1] = new BytesRef[Size2]; + Array[Array1] = new BytesRef[size2]; } } }
