Add break explicitly to avoid future unexpected fall-through
Change-Id: I58cfe8b0997b3ec94c2913e93575aa6770eee71f
Showing
1 changed file
with
1 additions
and
0 deletions
... | @@ -254,6 +254,7 @@ public class LinkResourceManager implements LinkResourceService { | ... | @@ -254,6 +254,7 @@ public class LinkResourceManager implements LinkResourceService { |
254 | break; | 254 | break; |
255 | case MPLS_LABEL: | 255 | case MPLS_LABEL: |
256 | result.add(new MplsLabelResourceRequest()); | 256 | result.add(new MplsLabelResourceRequest()); |
257 | + break; | ||
257 | default: | 258 | default: |
258 | break; | 259 | break; |
259 | } | 260 | } | ... | ... |
-
Please register or login to post a comment