Remove "public" to follow our convention

Change-Id: Iff2ebf90d8791bfcdb724d67b2bd0da2756cf5ce
diff --git a/pcep/api/src/main/java/org/onosproject/pcep/controller/driver/PcepClientDriver.java b/pcep/api/src/main/java/org/onosproject/pcep/controller/driver/PcepClientDriver.java
index 16d0b0b..f728de5 100755
--- a/pcep/api/src/main/java/org/onosproject/pcep/controller/driver/PcepClientDriver.java
+++ b/pcep/api/src/main/java/org/onosproject/pcep/controller/driver/PcepClientDriver.java
@@ -34,33 +34,33 @@
      *
      * @param agent the agent to set.
      */
-    public void setAgent(PcepAgent agent);
+    void setAgent(PcepAgent agent);
 
     /**
      * Announce to the Pcep agent that this pcc client has connected.
      *
      * @return true if successful, false if duplicate switch.
      */
-    public boolean connectClient();
+    boolean connectClient();
 
     /**
      * Remove this pcc client from the Pcep agent.
      */
-    public void removeConnectedClient();
+    void removeConnectedClient();
 
     /**
      * Sets the PCEP version for this pcc.
      *
      * @param pcepVersion the version to set.
      */
-    public void setPcVersion(PcepVersion pcepVersion);
+    void setPcVersion(PcepVersion pcepVersion);
 
     /**
      * Sets the associated Netty channel for this pcc.
      *
      * @param channel the Netty channel
      */
-    public void setChannel(Channel channel);
+    void setChannel(Channel channel);
 
 
     /**
@@ -68,28 +68,28 @@
      *
      * @param keepAliveTime the keep alive time to set.
      */
-    public void setPcKeepAliveTime(byte keepAliveTime);
+    void setPcKeepAliveTime(byte keepAliveTime);
 
     /**
      * Sets the dead time for this pcc.
      *
      * @param deadTime the dead timer value to set.
      */
-    public void setPcDeadTime(byte deadTime);
+    void setPcDeadTime(byte deadTime);
 
     /**
      * Sets the session id for this pcc.
      *
      * @param sessionId the session id value to set.
      */
-    public void setPcSessionId(byte sessionId);
+    void setPcSessionId(byte sessionId);
 
     /**
      * Sets whether the pcc is connected.
      *
      * @param connected whether the pcc is connected
      */
-    public void setConnected(boolean connected);
+    void setConnected(boolean connected);
 
     /**
      * Initializes the behavior.