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

Method isSpace

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

Checks if the given character is a whitespace character. @param c the character to check @return true if the character is a space, tab, newline, or carriage return

(char c)

Source from the content-addressed store, hash-verified

374 * @return true if the character is a space, tab, newline, or carriage return
375 */
376 protected boolean isSpace(char c) {
377 return c == ' ' || c == '\n' || c == '\t' || c == '\r';
378 }
379
380 /**
381 * Checks if the given character is a quote character.

Callers 2

parseParamNamesMethod · 0.95
parseCmdMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected