From a82d4085e277d17cf9a1ff45948bcf51dd06b09c Mon Sep 17 00:00:00 2001 From: Billy Olsen Date: Fri, 6 Mar 2020 07:37:46 -0700 Subject: [PATCH] Fix typo in method name Fix the spelling of 'interesting' in the method FlightData.calculateInterestingValues. Signed-off-by: Billy Olsen --- core/src/net/sf/openrocket/simulation/FlightData.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/net/sf/openrocket/simulation/FlightData.java b/core/src/net/sf/openrocket/simulation/FlightData.java index b31b2f360..e7f24f806 100644 --- a/core/src/net/sf/openrocket/simulation/FlightData.java +++ b/core/src/net/sf/openrocket/simulation/FlightData.java @@ -101,7 +101,7 @@ public class FlightData { for (FlightDataBranch b : branches) this.addBranch(b); - calculateIntrestingValues(); + calculateInterestingValues(); } @@ -126,7 +126,7 @@ public class FlightData { branches.add(branch); if (branches.size() == 1) { - calculateIntrestingValues(); + calculateInterestingValues(); } } @@ -185,7 +185,7 @@ public class FlightData { * Calculate the max. altitude/velocity/acceleration, time to apogee, flight time * and ground hit velocity. */ - private void calculateIntrestingValues() { + private void calculateInterestingValues() { if (branches.isEmpty()) return;