bug fix to avoid fallthrough
This commit is contained in:
parent
e33334d246
commit
8b69d734d7
|
@ -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";
|
||||
|
|
Loading…
Reference in New Issue