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

Method clone

java/org/apache/tomcat/dbcp/dbcp2/Utils.java:104–106  ·  view source on GitHub ↗

Clones the given char[] if not null. @param value may be null. @return a cloned char[] or null.

(final char[] value)

Source from the content-addressed store, hash-verified

102 * @return a cloned char[] or null.
103 */
104 public static char[] clone(final char[] value) {
105 return value == null ? null : value.clone();
106 }
107
108 /**
109 * Clones the given {@link Properties} without the standard "user" or "password" entries.

Callers 10

getUserPasswordMethod · 0.95
getUserPasswordMethod · 0.95
setPasswordMethod · 0.95
getPasswordCharArrayMethod · 0.95
setPasswordMethod · 0.95
CharArrayMethod · 0.95
getMethod · 0.95

Calls 1

cloneMethod · 0.65

Tested by

no test coverage detected