Merge remote-tracking branch 'origin/GP-1-dragonmacher-function-color-fix--SQUASHED'

This commit is contained in:
Ryan Kurtz 2025-07-11 11:58:14 -04:00
commit c7aa190b40
13 changed files with 669 additions and 290 deletions

View file

@ -4,9 +4,9 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*
* http://www.apache.org/licenses/LICENSE-2.0
*
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@ -86,7 +86,7 @@ public class FieldLocation implements Comparable<FieldLocation> {
* @param index the index of the layout containing the location
* @param fieldNum the index of the field in the layout containing the location
* @param row the text row in the field containing the location.
* @param col the character position the row containing the location.
* @param col the character position in the row containing the location.
*/
public FieldLocation(int index, int fieldNum, int row, int col) {
this(BigInteger.valueOf(index), fieldNum, row, col);