commit | d1506203e6b54dbbda0a5d017acd74d6fa6078aa | [log] [tgz] |
---|---|---|
author | Sho SHIMIZU <sshimizu@us.fujitsu.com> | Tue May 05 10:43:08 2015 -0700 |
committer | Sho SHIMIZU <sshimizu@us.fujitsu.com> | Tue May 05 10:43:08 2015 -0700 |
tree | 3959be1a79caca2fb596859e77bc46d0a1e214b8 | |
parent | 3ee7f74bcfdbb7469d62d7a13129897c2f825757 [diff] |
Remove "public" from Instruction to follow our convention Change-Id: I60328ef5fa25f33ccf5ae3ce6619a3a75c534c72
diff --git a/core/api/src/main/java/org/onosproject/net/flow/instructions/Instruction.java b/core/api/src/main/java/org/onosproject/net/flow/instructions/Instruction.java index 67ea189..b5ddcc1 100644 --- a/core/api/src/main/java/org/onosproject/net/flow/instructions/Instruction.java +++ b/core/api/src/main/java/org/onosproject/net/flow/instructions/Instruction.java
@@ -23,7 +23,7 @@ /** * Represents the type of traffic treatment. */ - public enum Type { + enum Type { /** * Signifies that the traffic should be dropped. */ @@ -67,6 +67,6 @@ * Returns the type of instruction. * @return type of instruction */ - public Type type(); + Type type(); }