Remove unnecessary semicolon
Change-Id: I81a5aa229252ee96ced23465f56f10d3148620cc
Showing
3 changed files
with
4 additions
and
4 deletions
| ... | @@ -94,7 +94,7 @@ public class PcepClientAdapter implements PcepClient { | ... | @@ -94,7 +94,7 @@ public class PcepClientAdapter implements PcepClient { |
| 94 | @Override | 94 | @Override |
| 95 | public final PccId getPccId() { | 95 | public final PccId getPccId() { |
| 96 | return this.pccId; | 96 | return this.pccId; |
| 97 | - }; | 97 | + } |
| 98 | 98 | ||
| 99 | @Override | 99 | @Override |
| 100 | public final String getStringId() { | 100 | public final String getStringId() { | ... | ... |
| ... | @@ -37,5 +37,5 @@ public enum RequestType { | ... | @@ -37,5 +37,5 @@ public enum RequestType { |
| 37 | /** | 37 | /** |
| 38 | * Specifies the request type for PCC to report existing tunnel. | 38 | * Specifies the request type for PCC to report existing tunnel. |
| 39 | */ | 39 | */ |
| 40 | - LSP_STATE_RPT; | ||
| 41 | -} | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 40 | + LSP_STATE_RPT | ||
| 41 | +} | ... | ... |
providers/pcep/tunnel/src/test/java/org/onosproject/provider/pcep/tunnel/impl/PcepClientAdapter.java
| ... | @@ -96,7 +96,7 @@ public class PcepClientAdapter implements PcepClient { | ... | @@ -96,7 +96,7 @@ public class PcepClientAdapter implements PcepClient { |
| 96 | @Override | 96 | @Override |
| 97 | public final PccId getPccId() { | 97 | public final PccId getPccId() { |
| 98 | return this.pccId; | 98 | return this.pccId; |
| 99 | - }; | 99 | + } |
| 100 | 100 | ||
| 101 | @Override | 101 | @Override |
| 102 | public final String getStringId() { | 102 | public final String getStringId() { | ... | ... |
-
Please register or login to post a comment