Skip to content

Commit

Permalink
MetadataWrapperMap - remove empty @SuppressWarnings
Browse files Browse the repository at this point in the history
Signed-off-by: Emil Sierżęga <emilsierzega@gmail.com>
  • Loading branch information
Emkas committed Jun 15, 2022
1 parent b4aaf12 commit 4a1b4b8
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions impl/src/main/java/com/sun/faces/util/MetadataWrapperMap.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,11 @@ public void clear() {
this.wrapped.clear();
}

@SuppressWarnings(value = "")
@Override
public boolean containsKey(Object key) {
return this.wrapped.containsKey(key);
}

@SuppressWarnings(value = "")
@Override
public boolean containsValue(Object value) {
return this.wrapped.containsValue(value);
Expand All @@ -57,7 +55,6 @@ public Set<Map.Entry<K, V>> entrySet() {
return this.wrapped.entrySet();
}

@SuppressWarnings(value = "")
@Override
public V get(Object key) {
return this.wrapped.get(key);
Expand Down Expand Up @@ -86,7 +83,6 @@ public void putAll(Map m) {
this.wrapped.putAll(m);
}

@SuppressWarnings(value = "")
@Override
public V remove(Object key) {
return this.wrapped.remove(key);
Expand Down

0 comments on commit 4a1b4b8

Please sign in to comment.