Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
java-version: 11

- name: Cache Maven packages
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ public V put(final K key, final V val) {

@Override
public void putAll(final Map<? extends K, ? extends V> m) {
throw new UnsupportedOperationException();
__putAll(m);
}

@Override
Expand Down Expand Up @@ -1910,19 +1910,21 @@ public V put(final K key, final V val) {

@Override
public void putAll(final Map<? extends K, ? extends V> m) {
throw new UnsupportedOperationException();
__putAll(m);
}

@Override
public void clear() {
throw new UnsupportedOperationException();
}

@SuppressWarnings("unchecked")
@Override
public V remove(final Object key) {
throw new UnsupportedOperationException();
return __remove((K) key);
}

@SuppressWarnings("unchecked")
@Override
public boolean containsKey(final Object o) {
try {
Expand All @@ -1943,6 +1945,7 @@ public boolean containsValue(final Object o) {
return false;
}

@SuppressWarnings("unchecked")
@Override
public V get(final Object o) {
try {
Expand Down Expand Up @@ -2266,6 +2269,7 @@ public boolean contains(Object k) {
return entrySet;
}

@SuppressWarnings({"rawtypes", "unchecked"})
public boolean equals(final Object other) {
if (other == this) {
return true;
Expand Down