File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/main/java/edu/ie3/datamodel/io/source Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ repositories {
53
53
dependencies {
54
54
55
55
// ie³ power system utils
56
- implementation ' com.github.ie3-institute:PowerSystemUtils:2.2'
56
+ implementation ' com.github.ie3-institute:PowerSystemUtils:2.2.1 '
57
57
58
58
implementation ' tech.units:indriya:2.2'
59
59
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ List<CoordinateDistance> getClosestCoordinates(
95
95
default List <CoordinateDistance > calculateCoordinateDistances (
96
96
Point coordinate , int n , Collection <Point > coordinates ) {
97
97
if (coordinates != null && !coordinates .isEmpty ()) {
98
- SortedSet <CoordinateDistance > sortedDistances =
98
+ List <CoordinateDistance > sortedDistances =
99
99
GeoUtils .calcOrderedCoordinateDistances (coordinate , coordinates );
100
100
return restrictToBoundingBox (coordinate , sortedDistances , n );
101
101
} else {
You can’t perform that action at this time.
0 commit comments