Fix dangling Javadoc comments
Change-Id: I828f9bdf0c2b2205b9239c2ef5c85aadd83bb3f0
Showing
4 changed files
with
5 additions
and
9 deletions
... | @@ -14,9 +14,6 @@ | ... | @@ -14,9 +14,6 @@ |
14 | * limitations under the License. | 14 | * limitations under the License. |
15 | */ | 15 | */ |
16 | 16 | ||
17 | -/** | ||
18 | - * | ||
19 | - */ | ||
20 | package org.onosproject.store.trivial; | 17 | package org.onosproject.store.trivial; |
21 | 18 | ||
22 | import static org.junit.Assert.*; | 19 | import static org.junit.Assert.*; | ... | ... |
... | @@ -942,7 +942,7 @@ public class PathIntentCompilerTest { | ... | @@ -942,7 +942,7 @@ public class PathIntentCompilerTest { |
942 | 942 | ||
943 | assertTrue(VlanId.NO_VID < vlanToEncap.toShort() && vlanToEncap.toShort() < VlanId.MAX_VLAN); | 943 | assertTrue(VlanId.NO_VID < vlanToEncap.toShort() && vlanToEncap.toShort() < VlanId.MAX_VLAN); |
944 | 944 | ||
945 | - /** | 945 | + /* |
946 | * This second part is meant to test if the random selection is working properly. | 946 | * This second part is meant to test if the random selection is working properly. |
947 | * We are compiling the same intent in order to verify if the VLAN ID is different | 947 | * We are compiling the same intent in order to verify if the VLAN ID is different |
948 | * from the previous one. | 948 | * from the previous one. | ... | ... |
... | @@ -19,11 +19,10 @@ package org.onosproject.persistence.impl; | ... | @@ -19,11 +19,10 @@ package org.onosproject.persistence.impl; |
19 | /** | 19 | /** |
20 | * An exception defined for failures of the local persistent store system. | 20 | * An exception defined for failures of the local persistent store system. |
21 | */ | 21 | */ |
22 | - | ||
23 | -/** | ||
24 | - * Throws an exception with the specified message. | ||
25 | - */ | ||
26 | public class PersistenceException extends RuntimeException { | 22 | public class PersistenceException extends RuntimeException { |
23 | + /** | ||
24 | + * Throws an exception with the specified message. | ||
25 | + */ | ||
27 | public PersistenceException(String s) { | 26 | public PersistenceException(String s) { |
28 | super(s); | 27 | super(s); |
29 | } | 28 | } | ... | ... |
-
Please register or login to post a comment