MCPcopy Create free account
hub / github.com/jwtk/jjwt / putAll

Method putAll

impl/src/main/java/io/jsonwebtoken/impl/ParameterMap.java:206–215  ·  view source on GitHub ↗
(Map<? extends String, ?> m)

Source from the content-addressed store, hash-verified

204 }
205
206 @Override
207 public void putAll(Map<? extends String, ?> m) {
208 if (m == null) {
209 return;
210 }
211 for (Map.Entry<? extends String, ?> entry : m.entrySet()) {
212 String s = entry.getKey();
213 put(s, entry.getValue());
214 }
215 }
216
217 @Override
218 public void clear() {

Callers 1

ParameterMapMethod · 0.95

Calls 4

putMethod · 0.95
getValueMethod · 0.80
getKeyMethod · 0.65
entrySetMethod · 0.45

Tested by

no test coverage detected