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