Merge pull request #12689 from mariuslarsen/vavr-bug-fix

bug fix to avoid fallthrough
This commit is contained in:
Loredana Crusoveanu 2022-10-15 17:23:41 +03:00 committed by GitHub
commit a0aa008362
1 changed files with 3 additions and 3 deletions

View File

@ -323,13 +323,13 @@ public class VavrUnitTest {
if (input == 0) {
output = "zero";
}
if (input == 1) {
else if (input == 1) {
output = "one";
}
if (input == 2) {
else if (input == 2) {
output = "two";
}
if (input == 3) {
else if (input == 3) {
output = "three";
} else {
output = "unknown";