accord-core/src/main/java/accord/utils/SortedArrays.java [281:290]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            int cmp = 0;
            boolean unfinished;
            if (merge == null)
            {
                while (unfinished = (leftIdx < leftEnd && rightIdx < rightEnd))
                {
                    T leftKey = left[leftIdx];
                    T rightKey = right[rightIdx];

                    cmp = leftKey == rightKey ? 0 : comparator.compare(leftKey, rightKey);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



accord-core/src/main/java/accord/utils/SortedArrays.java [344:352]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            int cmp = 0;
            boolean unfinished;
            if (merge == null)
            {
                while (unfinished = (leftIdx < leftEnd && rightIdx < rightEnd))
                {
                    T leftKey = left[leftIdx];
                    T rightKey = right[rightIdx];
                    cmp = leftKey == rightKey ? 0 : comparator.compare(leftKey, rightKey);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



