Method
putAll
guava/src/com/google/common/cache/LocalCache.java:4258–4263
· guava/src/com/google/common/cache/LocalCache.java::LocalCache.putAll
(Map<? extends K, ? extends V> m)
Source from the content-addressed store, hash-verified
| 4256 | } |
| 4257 | |
| 4258 | @Override |
| 4259 | public void putAll(Map<? extends K, ? extends V> m) { |
| 4260 | for (Entry<? extends K, ? extends V> e : m.entrySet()) { |
| 4261 | put(e.getKey(), e.getValue()); |
| 4262 | } |
| 4263 | } |
| 4264 | |
| 4265 | @CanIgnoreReturnValue |
| 4266 | @Override |
Callers
nothing calls this directly
Tested by
no test coverage detected