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
Sho SHIMIZU
2016-08-12 14:57:37 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3437bdb069cf34497e2abd9a7fb695fa7d99dc21
3437bdb0
1 parent
3c2b2262
Fix dangling Javadoc comments
Change-Id: I828f9bdf0c2b2205b9239c2ef5c85aadd83bb3f0
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
9 deletions
core/api/src/main/java/org/onosproject/core/ApplicationRole.java
core/common/src/test/java/org/onosproject/store/trivial/SimpleDeviceStoreTest.java
core/net/src/test/java/org/onosproject/net/intent/impl/compiler/PathIntentCompilerTest.java
core/store/persistence/src/main/java/org/onosproject/persistence/impl/PersistenceException.java
core/api/src/main/java/org/onosproject/core/ApplicationRole.java
View file @
3437bdb
...
...
@@ -32,7 +32,7 @@ public enum ApplicationRole {
*/
UNSPECIFIED
,
/*
*
/*
* More useful roles may be defined.
*/
}
...
...
core/common/src/test/java/org/onosproject/store/trivial/SimpleDeviceStoreTest.java
View file @
3437bdb
...
...
@@ -14,9 +14,6 @@
* limitations under the License.
*/
/**
*
*/
package
org
.
onosproject
.
store
.
trivial
;
import
static
org
.
junit
.
Assert
.*;
...
...
core/net/src/test/java/org/onosproject/net/intent/impl/compiler/PathIntentCompilerTest.java
View file @
3437bdb
...
...
@@ -942,7 +942,7 @@ public class PathIntentCompilerTest {
assertTrue
(
VlanId
.
NO_VID
<
vlanToEncap
.
toShort
()
&&
vlanToEncap
.
toShort
()
<
VlanId
.
MAX_VLAN
);
/*
*
/*
* This second part is meant to test if the random selection is working properly.
* We are compiling the same intent in order to verify if the VLAN ID is different
* from the previous one.
...
...
core/store/persistence/src/main/java/org/onosproject/persistence/impl/PersistenceException.java
View file @
3437bdb
...
...
@@ -19,11 +19,10 @@ package org.onosproject.persistence.impl;
/**
* An exception defined for failures of the local persistent store system.
*/
/**
* Throws an exception with the specified message.
*/
public
class
PersistenceException
extends
RuntimeException
{
/**
* Throws an exception with the specified message.
*/
public
PersistenceException
(
String
s
)
{
super
(
s
);
}
...
...
Please
register
or
login
to post a comment