MCPcopy Index your code
hub / github.com/apache/tomcat / getProperty

Method getProperty

java/org/apache/juli/FileHandler.java:440–448  ·  view source on GitHub ↗
(String name, String defaultValue)

Source from the content-addressed store, hash-verified

438
439
440 private String getProperty(String name, String defaultValue) {
441 String value = LogManager.getLogManager().getProperty(name);
442 if (value == null) {
443 value = defaultValue;
444 } else {
445 value = value.trim();
446 }
447 return value;
448 }
449
450
451 /**

Callers 1

configureMethod · 0.95

Calls 2

getPropertyMethod · 0.65
trimMethod · 0.45

Tested by

no test coverage detected