Remove all redundant public modifiers in interfaces
[ovsdb.git] / library / src / main / java / org / opendaylight / ovsdb / lib / schema / typed / TypedColumn.java
index 71cce2f4bed70fed43d94db30052dfbc0feb92fe..13df4376a2f7ba865720d42aa3085a8419111f48 100644 (file)
@@ -20,8 +20,8 @@ import java.lang.annotation.ElementType;;
 @Retention(RetentionPolicy.RUNTIME)
 @Target(ElementType.METHOD)
 public @interface TypedColumn {
-    public String name();
-    public MethodType method();
-    public String fromVersion() default Version.NULL_VERSION_STRING;
-    public String untilVersion() default Version.NULL_VERSION_STRING;
+    String name();
+    MethodType method();
+    String fromVersion() default Version.NULL_VERSION_STRING;
+    String untilVersion() default Version.NULL_VERSION_STRING;
 }