mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-17 16:30:28 +00:00
Merge branch '7.0.x'
This commit is contained in:
@@ -56,7 +56,7 @@ final class FilteredMap<K, V extends @Nullable Object> extends AbstractMap<K, V>
|
||||
@Override
|
||||
public int size() {
|
||||
int size = 0;
|
||||
for (K k : keySet()) {
|
||||
for (K k : this.delegate.keySet()) {
|
||||
if (this.filter.test(k)) {
|
||||
size++;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user