Fix some Lint issues

This commit is contained in:
Emux 2023-12-14 18:46:25 +02:00
parent bcf6a7f630
commit de70dec44a
No known key found for this signature in database
GPG key ID: 64ED9980896038C3
5 changed files with 6 additions and 1 deletions

View file

@ -51,7 +51,7 @@ public final class WaypointMatcherImpl implements WaypointMatcher {
}
// sort result list
comparator = new Comparator<>() {
comparator = new Comparator<MatchedWaypoint>() {
@Override
public int compare(MatchedWaypoint mw1, MatchedWaypoint mw2) {
int cmpDist = Double.compare(mw1.radius, mw2.radius);