Fixing sonar issues 4
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / RevisionAwareXPath.java
index 95d46ac8b20b577c0a1c17bc8522fdcbb7b52d79..f2d911a7dadfa42931e6bb78317eabbe57509f9c 100644 (file)
@@ -23,7 +23,7 @@ public interface RevisionAwareXPath {
      * @return <code>true</code> if the XPapth starts in root of Yang model,
      *         otherwise returns <code>false</cdoe>
      */
-    public boolean isAbsolute();
+    boolean isAbsolute();
 
     /**
      * Returns the XPath formatted string as is defined in model. <br>
@@ -32,5 +32,5 @@ public interface RevisionAwareXPath {
      * 
      * @return the XPath formatted string as is defined in model.
      */
-    public String toString();
+    String toString();
 }