Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/retreive-voltageLevel-busBarSect…
Browse files Browse the repository at this point in the history
…ion-for-modification-connectivity' into retreive-voltageLevel-busBarSection-for-modification-connectivity
  • Loading branch information
ghazwarhili committed Oct 16, 2024
2 parents 4879f61 + 09e54fa commit 5a802ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ private Double applyOperation(Operator operator, @Nonnull Double value1, @Nonnul
case SUBTRACTION -> value1 - value2;
case MULTIPLICATION -> value1 * value2;
case DIVISION -> value1 / value2;
case PERCENTAGE -> value1 * (value2 / 100);
case PERCENTAGE -> (value1 / 100) * value2;
};
}
}

0 comments on commit 5a802ba

Please sign in to comment.