Updated broken color usage for function references and parameter references

This commit is contained in:
dragonmacher 2025-07-10 17:09:20 -04:00
parent 894e65589a
commit c538b0def6
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);