Add missing @since tag to WordUtils.containsAllWords

This commit is contained in:
Benedikt Ritter 2016-09-11 16:55:24 +02:00
parent ecf6de89ba
commit 4ff5974c4a
1 changed files with 1 additions and 0 deletions

View File

@ -584,6 +584,7 @@ public static String initials(final String str, final char... delimiters) {
* @param word The CharSequence to check, may be null * @param word The CharSequence to check, may be null
* @param words The array of String words to search for, may be null * @param words The array of String words to search for, may be null
* @return {@code true} if all search words are found, {@code false} otherwise * @return {@code true} if all search words are found, {@code false} otherwise
* @since 3.5
*/ */
public static boolean containsAllWords(CharSequence word, CharSequence... words) { public static boolean containsAllWords(CharSequence word, CharSequence... words) {
if (StringUtils.isEmpty(word) || ArrayUtils.isEmpty(words)) { if (StringUtils.isEmpty(word) || ArrayUtils.isEmpty(words)) {