diff options
| author | Jacob Palecki <[email protected]> | 2021-01-20 00:32:51 -0800 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2021-01-20 00:32:51 -0800 |
| commit | 3bab172f863390a3930ada35173b5c943db9489a (patch) | |
| tree | 45a5df5291d6402fa54628daaae026da2c8f7e27 | |
| parent | Final graph fidelity tweaks and fixes (diff) | |
| download | rawaccel-3bab172f863390a3930ada35173b5c943db9489a.tar.xz rawaccel-3bab172f863390a3930ada35173b5c943db9489a.zip | |
Remove debug statement
| -rw-r--r-- | grapher/Models/Calculations/AccelCalculator.cs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/grapher/Models/Calculations/AccelCalculator.cs b/grapher/Models/Calculations/AccelCalculator.cs index 733a3c0..3787291 100644 --- a/grapher/Models/Calculations/AccelCalculator.cs +++ b/grapher/Models/Calculations/AccelCalculator.cs @@ -227,11 +227,6 @@ namespace grapher.Models.Calculations continue; } - if (inDiff < 0 || outDiff < 0) - { - Console.WriteLine(string.Empty); - } - if (!data.VelocityPoints.ContainsKey(simulatedInputDatum.velocity)) { data.VelocityPoints.Add(simulatedInputDatum.velocity, magnitude); |