Sho SHIMIZU
Committed by Gerrit Code Review

Remove "public" to follow our convention

Change-Id: Ie32e10b33a9a997e7613f1361f979923751fcd92
......@@ -59,7 +59,7 @@ public interface PcepMsgPath {
* @return PcepMsgPath
* @throws PcepParseException while parsing Message Path from Channel Buffer.
*/
public PcepMsgPath read(ChannelBuffer bb) throws PcepParseException;
PcepMsgPath read(ChannelBuffer bb) throws PcepParseException;
/**
* writes ERO object and attribute list to channel.
......@@ -69,7 +69,7 @@ public interface PcepMsgPath {
* @throws PcepParseException while writing Message Path into Channel Buffer.
*/
public int write(ChannelBuffer bb) throws PcepParseException;
int write(ChannelBuffer bb) throws PcepParseException;
/**
* Builder interface with get and set functions to build PcepMsgPath.
......
......@@ -149,7 +149,7 @@ public interface PcepStateReport {
/**
* Builder interface with get and set functions to build PcepStateReport.
*/
public interface Builder {
interface Builder {
/**
* Builds PcepStateReport.
......
......@@ -36,14 +36,14 @@ public interface PcepValueType {
*
* @return value of type
*/
public short getType();
short getType();
/**
* Returns the Length of PCEP Message.
*
* @return value of Length
*/
public short getLength();
short getLength();
/**
* Writes the byte Stream of PCEP Message to channel buffer.
......@@ -51,5 +51,5 @@ public interface PcepValueType {
* @param bb of type channel buffer
* @return length of bytes written to channel buffer
*/
public int write(ChannelBuffer bb);
int write(ChannelBuffer bb);
}
......