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

Method matchesETag

java/org/apache/jasper/compiler/JspReader.java:324–337  ·  view source on GitHub ↗
(String tagName)

Source from the content-addressed store, hash-verified

322 }
323
324 boolean matchesETag(String tagName) {
325 Mark mark = mark();
326
327 if (!matches("</" + tagName)) {
328 return false;
329 }
330 skipSpaces();
331 if (nextChar() == '>') {
332 return true;
333 }
334
335 setCurrent(mark);
336 return false;
337 }
338
339 boolean matchesETagWithoutLessThan(String tagName) {
340 Mark mark = mark();

Callers 5

parseXMLDirectiveMethod · 0.80
parseEmptyBodyMethod · 0.80
parseOptionalBodyMethod · 0.80
parseBodyMethod · 0.80

Calls 5

markMethod · 0.95
matchesMethod · 0.95
skipSpacesMethod · 0.95
nextCharMethod · 0.95
setCurrentMethod · 0.95

Tested by

no test coverage detected