Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍길동
/
onos
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
HIGUCHI Yuta
2016-03-28 13:35:44 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
67023a2132af0b02dc7ffcc3ec654b5528d051d1
67023a21
1 parent
80980c73
Minor javadoc fixes.
Change-Id: I1488e7f26a447543191aaa46070a16c5968db0b6
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
8 deletions
core/api/src/test/java/org/onosproject/net/topology/DefaultTopologyEdgeTest.java
core/net/src/main/java/org/onosproject/cluster/impl/ConfigFileBasedClusterMetadataProvider.java
core/store/dist/src/main/java/org/onosproject/store/device/impl/GossipDeviceStore.java
utils/jdvue/src/main/java/org/onlab/jdvue/Catalog.java
utils/junit/src/test/java/org/onlab/junit/TestUtilsTest.java
core/api/src/test/java/org/onosproject/net/topology/DefaultTopologyEdgeTest.java
View file @
67023a2
...
...
@@ -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
)
...
...
core/net/src/main/java/org/onosproject/cluster/impl/ConfigFileBasedClusterMetadataProvider.java
View file @
67023a2
...
...
@@ -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.
...
...
core/store/dist/src/main/java/org/onosproject/store/device/impl/GossipDeviceStore.java
View file @
67023a2
...
...
@@ -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.
*
...
...
utils/jdvue/src/main/java/org/onlab/jdvue/Catalog.java
View file @
67023a2
...
...
@@ -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
...
...
utils/junit/src/test/java/org/onlab/junit/TestUtilsTest.java
View file @
67023a2
...
...
@@ -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
...
...
Please
register
or
login
to post a comment