Fixing sonar issues 2
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / type / BitsTypeDefinition.java
index 2a0fb506b3dba22841c818552ea62195864aaa33..bdd566ec3f5e02c0c975e36a8a6c7c38f0a0b47f 100644 (file)
@@ -25,7 +25,7 @@ public interface BitsTypeDefinition extends TypeDefinition<BitsTypeDefinition> {
      * @return list of <code>Bit</code> type instastances with data about all
      *         individual bits of <code>bits</code> YANG built-in type
      */
-    public List<Bit> getBits();
+    List<Bit> getBits();
 
     /**
      * 
@@ -39,13 +39,13 @@ public interface BitsTypeDefinition extends TypeDefinition<BitsTypeDefinition> {
          * 
          * @return The position value of bit in range from 0 to 4294967295.
          */
-        public Long getPosition();
+        Long getPosition();
 
         /**
          * Returns the name of the concrete bit.
          * 
          * @return string with the name of the concrete bit
          */
-        public String getName();
+        String getName();
     }
 }