Fix eclipse/checkstyle warnings
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / PathArgumentList.java
index 8b5f8cb6e3752f2b5d2fc30f6b1abbd4439101d3..512b3fd5a6248da0d7e1a6a7da4207fd046f8762 100644 (file)
@@ -24,32 +24,37 @@ abstract class PathArgumentList extends AbstractList<PathArgument> {
     }
 
     @Override
+    @SuppressWarnings("checkstyle:parameterName")
     public final boolean remove(final Object o) {
         throw new UnsupportedOperationException();
     }
 
     @Override
+    @SuppressWarnings("checkstyle:parameterName")
     public final boolean addAll(@Nonnull final Collection<? extends PathArgument> c) {
         throw new UnsupportedOperationException();
     }
 
     @Override
-    public final boolean removeAll(@Nonnull final Collection<?> c) {
+    @SuppressWarnings("checkstyle:parameterName")
+    public final boolean addAll(final int index, final Collection<? extends PathArgument> c) {
         throw new UnsupportedOperationException();
     }
 
     @Override
-    public final boolean retainAll(@Nonnull final Collection<?> c) {
+    @SuppressWarnings("checkstyle:parameterName")
+    public final boolean removeAll(@Nonnull final Collection<?> c) {
         throw new UnsupportedOperationException();
     }
 
     @Override
-    public final void clear() {
+    @SuppressWarnings("checkstyle:parameterName")
+    public final boolean retainAll(@Nonnull final Collection<?> c) {
         throw new UnsupportedOperationException();
     }
 
     @Override
-    public final boolean addAll(final int index, final Collection<? extends PathArgument> c) {
+    public final void clear() {
         throw new UnsupportedOperationException();
     }
 }