HIGUCHI Yuta

Minor javadoc fixes.

Change-Id: I1488e7f26a447543191aaa46070a16c5968db0b6
......@@ -48,14 +48,14 @@ public class DefaultTopologyEdgeTest {
static final ProviderId PID = new ProviderId("foo", "bar");
/** D1:P1 -> D2:P1. */
/** D1:P1 {@literal ->} D2:P1. */
static final Link L1 = DefaultLink.builder()
.providerId(PID)
.src(CP1)
.dst(CP2)
.type(Link.Type.INDIRECT)
.build();
/** D2:P1 -> D1:P2. */
/** D2:P1 {@literal ->} D1:P2. */
static final Link L2 = DefaultLink.builder()
.providerId(PID)
.src(CP3)
......
......@@ -272,7 +272,6 @@ public class ConfigFileBasedClusterMetadataProvider implements ClusterMetadataPr
/**
* Monitors the metadata url for any updates and notifies providerService accordingly.
* @throws IOException
*/
private void watchUrl(String metadataUrl) {
// TODO: We are merely polling the url.
......
......@@ -1297,7 +1297,7 @@ public class GossipDeviceStore
/**
* Responds to anti-entropy advertisement message.
* <p/>
* <p>
* Notify sender about out-dated information using regular replication message.
* Send back advertisement to sender if not in sync.
*
......
......@@ -279,7 +279,7 @@ public class Catalog {
/**
* Extracts a fully qualified source class name from the given path.
* <p/>
* <p>
* For now, this implementation assumes standard Maven source structure
* and thus will look for start of package name under 'src/main/java/'.
* If it will not find such a prefix, it will simply return the path as
......
......@@ -121,7 +121,7 @@ public class TestUtilsTest {
/**
* Example to call private method and multiple parameters.
* <p/>
* <p>
* It also illustrates that paramTypes must match declared type,
* not the runtime types of arguments.
*
......@@ -151,7 +151,7 @@ public class TestUtilsTest {
/**
* Example to call method returning array.
* <p/>
* <p>
* Note: It is not required to receive as Object.
* Following is just verifying it is not Boxed arrays.
*
......@@ -170,7 +170,7 @@ public class TestUtilsTest {
/**
* Example to call void returning method.
* <p/>
* <p>
* Note: Return value will be null for void methods.
*
* @throws TestUtilsException TestUtils error
......