Skip to content

Commit

Permalink
Merge pull request #6 from SonamChugh13/YangCao
Browse files Browse the repository at this point in the history
Technical debt resolved
  • Loading branch information
itshisher authored Feb 10, 2024
2 parents 2b58f76 + 06eeb57 commit e1e773f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions .idea/migrations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -368,11 +368,11 @@ public void setTotalAltitudeLoss(Float totalAltitudeLoss_m) {
}

@VisibleForTesting(otherwise = VisibleForTesting.PACKAGE_PRIVATE)
public void addTotalAltitudeLoss(float loss_m) {
public void addTotalAltitudeLoss(float lossM) {
if (totalAltitudeLoss_m == null) {
totalAltitudeLoss_m = 0f;
}
totalAltitudeLoss_m += loss_m;
totalAltitudeLoss_m += lossM;
}

@Override
Expand Down

0 comments on commit e1e773f

Please sign in to comment.