Fixing sonar issues 4
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / ExtensionDefinition.java
index c65200c7e86d7bc40192ff92de74fbc31310ea1d..5154df6d86b646f1d547109215a3175ca5e5bb79 100644 (file)
@@ -27,7 +27,7 @@ public interface ExtensionDefinition extends SchemaNode {
      *         Keyword. If no argument statement is present the method will
      *         return <code>null</code>
      */
-    public String getArgument();
+    String getArgument();
 
     /**
      * This statement indicates if the argument is mapped to an XML element in
@@ -46,5 +46,5 @@ public interface ExtensionDefinition extends SchemaNode {
      *         YIN or returns <code>false</code> if the argument is mapped to an
      *         XML attribute.
      */
-    public boolean isYinElement();
+    boolean isYinElement();
 }