Committed by
Gerrit Code Review
Remove "public" to follow our convention
Change-Id: Ie32e10b33a9a997e7613f1361f979923751fcd92
Showing
3 changed files
with
6 additions
and
6 deletions
| ... | @@ -59,7 +59,7 @@ public interface PcepMsgPath { | ... | @@ -59,7 +59,7 @@ public interface PcepMsgPath { |
| 59 | * @return PcepMsgPath | 59 | * @return PcepMsgPath |
| 60 | * @throws PcepParseException while parsing Message Path from Channel Buffer. | 60 | * @throws PcepParseException while parsing Message Path from Channel Buffer. |
| 61 | */ | 61 | */ |
| 62 | - public PcepMsgPath read(ChannelBuffer bb) throws PcepParseException; | 62 | + PcepMsgPath read(ChannelBuffer bb) throws PcepParseException; |
| 63 | 63 | ||
| 64 | /** | 64 | /** |
| 65 | * writes ERO object and attribute list to channel. | 65 | * writes ERO object and attribute list to channel. |
| ... | @@ -69,7 +69,7 @@ public interface PcepMsgPath { | ... | @@ -69,7 +69,7 @@ public interface PcepMsgPath { |
| 69 | * @throws PcepParseException while writing Message Path into Channel Buffer. | 69 | * @throws PcepParseException while writing Message Path into Channel Buffer. |
| 70 | */ | 70 | */ |
| 71 | 71 | ||
| 72 | - public int write(ChannelBuffer bb) throws PcepParseException; | 72 | + int write(ChannelBuffer bb) throws PcepParseException; |
| 73 | 73 | ||
| 74 | /** | 74 | /** |
| 75 | * Builder interface with get and set functions to build PcepMsgPath. | 75 | * Builder interface with get and set functions to build PcepMsgPath. | ... | ... |
| ... | @@ -149,7 +149,7 @@ public interface PcepStateReport { | ... | @@ -149,7 +149,7 @@ public interface PcepStateReport { |
| 149 | /** | 149 | /** |
| 150 | * Builder interface with get and set functions to build PcepStateReport. | 150 | * Builder interface with get and set functions to build PcepStateReport. |
| 151 | */ | 151 | */ |
| 152 | - public interface Builder { | 152 | + interface Builder { |
| 153 | 153 | ||
| 154 | /** | 154 | /** |
| 155 | * Builds PcepStateReport. | 155 | * Builds PcepStateReport. | ... | ... |
| ... | @@ -36,14 +36,14 @@ public interface PcepValueType { | ... | @@ -36,14 +36,14 @@ public interface PcepValueType { |
| 36 | * | 36 | * |
| 37 | * @return value of type | 37 | * @return value of type |
| 38 | */ | 38 | */ |
| 39 | - public short getType(); | 39 | + short getType(); |
| 40 | 40 | ||
| 41 | /** | 41 | /** |
| 42 | * Returns the Length of PCEP Message. | 42 | * Returns the Length of PCEP Message. |
| 43 | * | 43 | * |
| 44 | * @return value of Length | 44 | * @return value of Length |
| 45 | */ | 45 | */ |
| 46 | - public short getLength(); | 46 | + short getLength(); |
| 47 | 47 | ||
| 48 | /** | 48 | /** |
| 49 | * Writes the byte Stream of PCEP Message to channel buffer. | 49 | * Writes the byte Stream of PCEP Message to channel buffer. |
| ... | @@ -51,5 +51,5 @@ public interface PcepValueType { | ... | @@ -51,5 +51,5 @@ public interface PcepValueType { |
| 51 | * @param bb of type channel buffer | 51 | * @param bb of type channel buffer |
| 52 | * @return length of bytes written to channel buffer | 52 | * @return length of bytes written to channel buffer |
| 53 | */ | 53 | */ |
| 54 | - public int write(ChannelBuffer bb); | 54 | + int write(ChannelBuffer bb); |
| 55 | } | 55 | } | ... | ... |
-
Please register or login to post a comment