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

Method checkLocked

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

Check the lock state and throw an exception if locked. @exception IllegalStateException if this set is currently locked

()

Source from the content-addressed store, hash-verified

129 * @exception IllegalStateException if this set is currently locked
130 */
131 private void checkLocked() {
132 if (locked) {
133 throw new IllegalStateException(sm.getString("resourceSet.locked"));
134 }
135 }
136
137
138 /**

Callers 7

addMethod · 0.95
addAllMethod · 0.95
clearMethod · 0.95
removeMethod · 0.95
removeAllMethod · 0.95
retainAllMethod · 0.95
removeIfMethod · 0.95

Calls 1

getStringMethod · 0.65

Tested by

no test coverage detected