commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/PointMap1DImpl.java [164:175]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            if (lowEntry != null &&
                    (highEntry == null || lowEntry.getDistance() <= highEntry.getDistance())) {
                result = lowEntry;
                lowEntry = null;
            } else {
                result = highEntry;
                highEntry = null;
            }

            return result != null ?
                    result.getValue() :
                    null;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



commons-geometry-spherical/src/main/java/org/apache/commons/geometry/spherical/PointMap1SImpl.java [392:403]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            if (lowEntry != null &&
                    (highEntry == null || lowEntry.getDistance() <= highEntry.getDistance())) {
                result = lowEntry;
                lowEntry = null;
            } else {
                result = highEntry;
                highEntry = null;
            }

            return result != null ?
                    result.getValue() :
                    null;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



