made parameter final to ensure it doesn't change

This commit is contained in:
Axel Uhl
2014-03-20 12:32:36 +01:00
parent f6fe821f62
commit 2338088c71
@@ -167,7 +167,7 @@ public class IgtimiWindReceiver implements BulkFixReceiver {
}
}
private Wind getWind(TimePoint timePoint) throws ClassNotFoundException, IOException, ParseException {
private Wind getWind(final TimePoint timePoint) throws ClassNotFoundException, IOException, ParseException {
final Wind result;
Pair<AWA, AWA> awaPair = getSurroundingFixes(getAwaTrack(), timePoint);
Bearing awa = getAWA(timePoint, awaPair);