Minor javadoc fixes.
Change-Id: I1488e7f26a447543191aaa46070a16c5968db0b6
Showing
5 changed files
with
7 additions
and
8 deletions
| ... | @@ -48,14 +48,14 @@ public class DefaultTopologyEdgeTest { | ... | @@ -48,14 +48,14 @@ public class DefaultTopologyEdgeTest { |
| 48 | 48 | ||
| 49 | static final ProviderId PID = new ProviderId("foo", "bar"); | 49 | static final ProviderId PID = new ProviderId("foo", "bar"); |
| 50 | 50 | ||
| 51 | - /** D1:P1 -> D2:P1. */ | 51 | + /** D1:P1 {@literal ->} D2:P1. */ |
| 52 | static final Link L1 = DefaultLink.builder() | 52 | static final Link L1 = DefaultLink.builder() |
| 53 | .providerId(PID) | 53 | .providerId(PID) |
| 54 | .src(CP1) | 54 | .src(CP1) |
| 55 | .dst(CP2) | 55 | .dst(CP2) |
| 56 | .type(Link.Type.INDIRECT) | 56 | .type(Link.Type.INDIRECT) |
| 57 | .build(); | 57 | .build(); |
| 58 | - /** D2:P1 -> D1:P2. */ | 58 | + /** D2:P1 {@literal ->} D1:P2. */ |
| 59 | static final Link L2 = DefaultLink.builder() | 59 | static final Link L2 = DefaultLink.builder() |
| 60 | .providerId(PID) | 60 | .providerId(PID) |
| 61 | .src(CP3) | 61 | .src(CP3) | ... | ... |
| ... | @@ -272,7 +272,6 @@ public class ConfigFileBasedClusterMetadataProvider implements ClusterMetadataPr | ... | @@ -272,7 +272,6 @@ public class ConfigFileBasedClusterMetadataProvider implements ClusterMetadataPr |
| 272 | 272 | ||
| 273 | /** | 273 | /** |
| 274 | * Monitors the metadata url for any updates and notifies providerService accordingly. | 274 | * Monitors the metadata url for any updates and notifies providerService accordingly. |
| 275 | - * @throws IOException | ||
| 276 | */ | 275 | */ |
| 277 | private void watchUrl(String metadataUrl) { | 276 | private void watchUrl(String metadataUrl) { |
| 278 | // TODO: We are merely polling the url. | 277 | // TODO: We are merely polling the url. | ... | ... |
| ... | @@ -1297,7 +1297,7 @@ public class GossipDeviceStore | ... | @@ -1297,7 +1297,7 @@ public class GossipDeviceStore |
| 1297 | 1297 | ||
| 1298 | /** | 1298 | /** |
| 1299 | * Responds to anti-entropy advertisement message. | 1299 | * Responds to anti-entropy advertisement message. |
| 1300 | - * <p/> | 1300 | + * <p> |
| 1301 | * Notify sender about out-dated information using regular replication message. | 1301 | * Notify sender about out-dated information using regular replication message. |
| 1302 | * Send back advertisement to sender if not in sync. | 1302 | * Send back advertisement to sender if not in sync. |
| 1303 | * | 1303 | * | ... | ... |
| ... | @@ -279,7 +279,7 @@ public class Catalog { | ... | @@ -279,7 +279,7 @@ public class Catalog { |
| 279 | 279 | ||
| 280 | /** | 280 | /** |
| 281 | * Extracts a fully qualified source class name from the given path. | 281 | * Extracts a fully qualified source class name from the given path. |
| 282 | - * <p/> | 282 | + * <p> |
| 283 | * For now, this implementation assumes standard Maven source structure | 283 | * For now, this implementation assumes standard Maven source structure |
| 284 | * and thus will look for start of package name under 'src/main/java/'. | 284 | * and thus will look for start of package name under 'src/main/java/'. |
| 285 | * If it will not find such a prefix, it will simply return the path as | 285 | * If it will not find such a prefix, it will simply return the path as | ... | ... |
| ... | @@ -121,7 +121,7 @@ public class TestUtilsTest { | ... | @@ -121,7 +121,7 @@ public class TestUtilsTest { |
| 121 | 121 | ||
| 122 | /** | 122 | /** |
| 123 | * Example to call private method and multiple parameters. | 123 | * Example to call private method and multiple parameters. |
| 124 | - * <p/> | 124 | + * <p> |
| 125 | * It also illustrates that paramTypes must match declared type, | 125 | * It also illustrates that paramTypes must match declared type, |
| 126 | * not the runtime types of arguments. | 126 | * not the runtime types of arguments. |
| 127 | * | 127 | * |
| ... | @@ -151,7 +151,7 @@ public class TestUtilsTest { | ... | @@ -151,7 +151,7 @@ public class TestUtilsTest { |
| 151 | 151 | ||
| 152 | /** | 152 | /** |
| 153 | * Example to call method returning array. | 153 | * Example to call method returning array. |
| 154 | - * <p/> | 154 | + * <p> |
| 155 | * Note: It is not required to receive as Object. | 155 | * Note: It is not required to receive as Object. |
| 156 | * Following is just verifying it is not Boxed arrays. | 156 | * Following is just verifying it is not Boxed arrays. |
| 157 | * | 157 | * |
| ... | @@ -170,7 +170,7 @@ public class TestUtilsTest { | ... | @@ -170,7 +170,7 @@ public class TestUtilsTest { |
| 170 | 170 | ||
| 171 | /** | 171 | /** |
| 172 | * Example to call void returning method. | 172 | * Example to call void returning method. |
| 173 | - * <p/> | 173 | + * <p> |
| 174 | * Note: Return value will be null for void methods. | 174 | * Note: Return value will be null for void methods. |
| 175 | * | 175 | * |
| 176 | * @throws TestUtilsException TestUtils error | 176 | * @throws TestUtilsException TestUtils error | ... | ... |
-
Please register or login to post a comment