Fix typo in method name

Fix the spelling of 'interesting' in the method
FlightData.calculateInterestingValues.

Signed-off-by: Billy Olsen <billy.olsen@gmail.com>
This commit is contained in:
Billy Olsen 2020-03-06 07:37:46 -07:00
parent 97c1112c56
commit a82d4085e2

View File

@ -101,7 +101,7 @@ public class FlightData {
for (FlightDataBranch b : branches) for (FlightDataBranch b : branches)
this.addBranch(b); this.addBranch(b);
calculateIntrestingValues(); calculateInterestingValues();
} }
@ -126,7 +126,7 @@ public class FlightData {
branches.add(branch); branches.add(branch);
if (branches.size() == 1) { if (branches.size() == 1) {
calculateIntrestingValues(); calculateInterestingValues();
} }
} }
@ -185,7 +185,7 @@ public class FlightData {
* Calculate the max. altitude/velocity/acceleration, time to apogee, flight time * Calculate the max. altitude/velocity/acceleration, time to apogee, flight time
* and ground hit velocity. * and ground hit velocity.
*/ */
private void calculateIntrestingValues() { private void calculateInterestingValues() {
if (branches.isEmpty()) if (branches.isEmpty())
return; return;