Fixing sonar issues 2
[yangtools.git] / code-generator / binding-model-api / src / main / java / org / opendaylight / yangtools / sal / binding / model / api / TypeMember.java
index 8003cfd8900abfda8e56e8ca71433b4f18bcd0f4..74c74990cc7c028caeb97172d933c1fe85a25662 100644 (file)
@@ -13,50 +13,50 @@ public interface TypeMember {
 
     /**
      * Returns List of annotation definitions associated with generated type.
-     *
+     * 
      * @return List of annotation definitions associated with generated type.
      */
-    public List<AnnotationType> getAnnotations();
+    List<AnnotationType> getAnnotations();
 
     /**
      * Returns the name of method.
-     *
+     * 
      * @return the name of method.
      */
-    public String getName();
+    String getName();
 
     /**
      * Returns comment string associated with method.
-     *
+     * 
      * @return comment string associated with method.
      */
-    public String getComment();
+    String getComment();
 
     /**
      * Returns the Type that declares method.
-     *
+     * 
      * @return the Type that declares method.
      */
-    public Type getDefiningType();
+    Type getDefiningType();
 
     /**
      * Returns the access modifier of method.
-     *
+     * 
      * @return the access modifier of method.
      */
-    public AccessModifier getAccessModifier();
+    AccessModifier getAccessModifier();
 
     /**
      * Returns the returning Type that methods returns.
-     *
+     * 
      * @return the returning Type that methods returns.
      */
-    public Type getReturnType();
+    Type getReturnType();
 
     /**
      * Returns <code>true</code> if method is declared as final.
-     *
+     * 
      * @return <code>true</code> if method is declared as final.
      */
-    public boolean isFinal();
+    boolean isFinal();
 }