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

Method isQuote

java/org/apache/catalina/ssi/SSIProcessor.java:386–388  ·  view source on GitHub ↗

Checks if the given character is a quote character. @param c the character to check @return true if the character is a single, double, or backtick quote

(char c)

Source from the content-addressed store, hash-verified

384 * @return true if the character is a single, double, or backtick quote
385 */
386 protected boolean isQuote(char c) {
387 return c == '\'' || c == '\"' || c == '`';
388 }
389}

Callers 1

parseParamValuesMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected