Skip to content

Commit

Permalink
Update javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
jmrozanec committed Apr 1, 2021
1 parent 52bf4cb commit 34493c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public CronDefinitionBuilder matchDayOfWeekAndDayOfMonth() {

/**
* Adds a cron validation.
*
* @param validation - constraint validation
* @return this CronDefinitionBuilder instance
*/
public CronDefinitionBuilder withCronValidation(final CronConstraint validation) {
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/cronutils/utils/StringUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,8 @@ public static boolean isNumeric(final CharSequence cs) {
* StringUtils.join([null, "", "a"], ',') = "null,,a"
* </pre>
*
* @param array the array of values to join together, may be null
* @param separator the separator character to use, null treated as ""
* @param parts - the array of values to join together, may be null
* @param separator - the separator character to use, null treated as ""
* @return the joined String, {@code null} if null array input
*/
public static String join(final Object[] parts, final String separator) {
Expand Down

0 comments on commit 34493c6

Please sign in to comment.