Checkstyle: Add missing JavaDoc

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1654144 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2015-01-23 08:47:00 +00:00
parent 4792f854b0
commit 813e18ff40
1 changed files with 6 additions and 0 deletions

View File

@ -53,6 +53,12 @@ public abstract class StrLookup<V> {
return NONE_LOOKUP;
}
/**
* Creates a copy of the given properties instance.
*
* @param input the Properties instance to copy.
* @return a copy of {@code input}.
*/
private static Properties copyProperties(Properties input) {
if (input == null) {
return null;