Clones the given char[] if not null. @param value may be null. @return a cloned char[] or null.
(final char[] value)
| 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. |
no test coverage detected