Fix/suppress checkstyle warnings
[yangtools.git] / third-party / triemap / src / main / java / org / opendaylight / yangtools / triemap / ImmutableEntrySet.java
index 9f031405e3a0bb141db5ead55f8a849733a98572..141f42c245db4ba0b6a187c2e132d8279c6651d3 100644 (file)
@@ -45,16 +45,19 @@ final class ImmutableEntrySet<K, V> extends AbstractEntrySet<K, V> {
     }
 
     @Override
+    @SuppressWarnings("checkstyle:parameterName")
     public boolean remove(final Object o) {
         throw unsupported();
     }
 
     @Override
+    @SuppressWarnings("checkstyle:parameterName")
     public boolean removeAll(final Collection<?> c) {
         throw unsupported();
     }
 
     @Override
+    @SuppressWarnings("checkstyle:parameterName")
     public boolean retainAll(final Collection<?> c) {
         throw unsupported();
     }