MCPcopy Create free account
hub / github.com/apache/tomcat / removeIf

Method removeIf

java/org/apache/catalina/util/ResourceSet.java:217–221  ·  view source on GitHub ↗

{@inheritDoc} @exception IllegalStateException if this set is currently locked

(java.util.function.Predicate<? super T> filter)

Source from the content-addressed store, hash-verified

215 * @exception IllegalStateException if this set is currently locked
216 */
217 @Override
218 public boolean removeIf(java.util.function.Predicate<? super T> filter) {
219 checkLocked();
220 return super.removeIf(filter);
221 }
222
223
224 /**

Callers 12

executeMethod · 0.80
decoupleOtherGroupsMethod · 0.80
purgeMethod · 0.80
loadMethod · 0.80
getVariableNamesMethod · 0.80
periodicEventMethod · 0.80
checkIfHeadersMethod · 0.80
periodicEvictMethod · 0.80

Calls 1

checkLockedMethod · 0.95