Remove useless modifiers 30/29030/2
authoradetalhouet <adetalhouet@inocybe.com>
Fri, 30 Oct 2015 15:43:40 +0000 (11:43 -0400)
committerAlexis de Talhouët <adetalhouet@inocybe.com>
Fri, 30 Oct 2015 15:48:18 +0000 (15:48 +0000)
In an interface it is not needed to declare method as public, as per default
they are public.

Change-Id: Ia9e1760d5932237529c76546776f7c57d3c5b252
Signed-off-by: adetalhouet <adetalhouet@inocybe.com>
impl/src/main/java/org/opendaylight/unimgr/api/IUnimgrConsoleProvider.java
impl/src/main/java/org/opendaylight/unimgr/api/IUnimgrDataChangeListener.java

index bf946e0cf79f45f2f96e9e63f65576b14a51e64e..19d90eb19e7eebee552ede5a801bc386ad37f174 100755 (executable)
@@ -14,17 +14,17 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.unimgr.r
 
 public interface IUnimgrConsoleProvider extends AutoCloseable {
 
-    public boolean addUni(Uni uni);
+    boolean addUni(Uni uni);
 
-    public boolean removeUni(String uuid);
+    boolean removeUni(String uuid);
 
-    public List<Uni> listUnis(boolean isConfigurationDatastore);
+    List<Uni> listUnis(boolean isConfigurationDatastore);
 
-    public Uni getUni(String uuid);
+    Uni getUni(String uuid);
 
-    public boolean removeEvc(String uuid);
+    boolean removeEvc(String uuid);
 
-    public boolean addEvc(Evc evc);
+    boolean addEvc(Evc evc);
 
-    public Evc getEvc(String uuid);
+    Evc getEvc(String uuid);
 }
index 7294cb312cc233a088cb70e326d1fde104a91356..50ca372ed91c9847fd3d21918816b30728cb0547 100755 (executable)
@@ -17,9 +17,9 @@ import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
 public interface IUnimgrDataChangeListener extends DataChangeListener,
         AutoCloseable {
 
-    public void create(Map<InstanceIdentifier<?>, DataObject> changes);
+    void create(Map<InstanceIdentifier<?>, DataObject> changes);
 
-    public void update(Map<InstanceIdentifier<?>, DataObject> changes);
+    void update(Map<InstanceIdentifier<?>, DataObject> changes);
 
-    public void delete(AsyncDataChangeEvent<InstanceIdentifier<?>, DataObject> changes);
+    void delete(AsyncDataChangeEvent<InstanceIdentifier<?>, DataObject> changes);
 }