Fix missing break statement found by Sonar
Change-Id: I5581aca308531517b1e73751487c042ab09ec606
Showing
1 changed file
with
1 additions
and
0 deletions
| ... | @@ -169,6 +169,7 @@ public class InstructionCodec extends JsonCodec<Instruction> { | ... | @@ -169,6 +169,7 @@ public class InstructionCodec extends JsonCodec<Instruction> { |
| 169 | final L3ModificationInstruction l3ModificationInstruction = | 169 | final L3ModificationInstruction l3ModificationInstruction = |
| 170 | (L3ModificationInstruction) instruction; | 170 | (L3ModificationInstruction) instruction; |
| 171 | encodeL3(result, l3ModificationInstruction); | 171 | encodeL3(result, l3ModificationInstruction); |
| 172 | + break; | ||
| 172 | 173 | ||
| 173 | default: | 174 | default: |
| 174 | log.info("Cannot convert instruction type of {}", instruction.type()); | 175 | log.info("Cannot convert instruction type of {}", instruction.type()); | ... | ... |
-
Please register or login to post a comment