Remove all redundant public modifiers in interfaces
[ovsdb.git] / schemas / openvswitch / src / main / java / org / opendaylight / ovsdb / schema / openvswitch / Capability.java
index d69bf06a5346f08e0829c909e71f2cf3c5ff72bd..34fe587987e6cf924d76d35955dd45d1fa870fb8 100644 (file)
@@ -25,8 +25,8 @@ import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
 @TypedTable(name="Capability", database="Open_vSwitch")
 public interface Capability extends TypedBaseTable<GenericTableSchema> {
     @TypedColumn(name="details", method=MethodType.GETCOLUMN)
-    public Column<GenericTableSchema, Map<String, String>> getDetailsColumn();
+    Column<GenericTableSchema, Map<String, String>> getDetailsColumn();
 
     @TypedColumn(name="details", method=MethodType.SETDATA)
-    public void setDetails(Map<String, String> details);
+    void setDetails(Map<String, String> details);
 }