Repository: commons-crypto Updated Branches: refs/heads/master 2167e308f -> 1f44456d3
Javadoc; unnecessary line break Project: http://git-wip-us.apache.org/repos/asf/commons-crypto/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-crypto/commit/1f44456d Tree: http://git-wip-us.apache.org/repos/asf/commons-crypto/tree/1f44456d Diff: http://git-wip-us.apache.org/repos/asf/commons-crypto/diff/1f44456d Branch: refs/heads/master Commit: 1f44456d377da9ab9c5702bca2f15ffedd2e5fdc Parents: 2167e30 Author: Sebb <s...@apache.org> Authored: Sun Jun 26 00:46:47 2016 +0100 Committer: Sebb <s...@apache.org> Committed: Sun Jun 26 00:46:47 2016 +0100 ---------------------------------------------------------------------- src/main/java/org/apache/commons/crypto/utils/Utils.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-crypto/blob/1f44456d/src/main/java/org/apache/commons/crypto/utils/Utils.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/crypto/utils/Utils.java b/src/main/java/org/apache/commons/crypto/utils/Utils.java index 02317ef..76229c1 100644 --- a/src/main/java/org/apache/commons/crypto/utils/Utils.java +++ b/src/main/java/org/apache/commons/crypto/utils/Utils.java @@ -159,12 +159,11 @@ public final class Utils { * entry,and returns an list of the entries. * * @param clazzNames a string consist of a list of the entries joined by a - * delimiter. + * delimiter, may be null or empty in which case an empty list is returned. * @param separator a delimiter for the input string. * @return a list of class entries. */ - public static List<String> splitClassNames(String clazzNames, - String separator) { + public static List<String> splitClassNames(String clazzNames, String separator) { List<String> res = new ArrayList<>(); if (clazzNames == null || clazzNames.isEmpty()) { return res;