Skip to content
Snippets Groups Projects
Commit 00c5908c authored by Luc Maisonobe's avatar Luc Maisonobe
Browse files

Fixed checkstyle warning.

parent 8db8150a
Branches
Tags
No related merge requests found
......@@ -83,7 +83,7 @@ public class MultiLayerModel implements AtmosphericRefraction {
this.ellipsoid = ellipsoid;
this.refractionLayers = new ArrayList<>(refractionLayers);
Collections.sort(this.refractionLayers,
(l1, l2) -> Double.compare(l2.getLowestAltitude(), l1.getLowestAltitude()));
(l1, l2) -> Double.compare(l2.getLowestAltitude(), l1.getLowestAltitude()));
atmosphereLowestAltitude = this.refractionLayers.get(this.refractionLayers.size() - 1).getLowestAltitude();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment