Skip to content

Commit 34493c6

Browse files
committed
Update javadoc
1 parent 52bf4cb commit 34493c6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/java/com/cronutils/model/definition/CronDefinitionBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ public CronDefinitionBuilder matchDayOfWeekAndDayOfMonth() {
125125

126126
/**
127127
* Adds a cron validation.
128-
*
128+
* @param validation - constraint validation
129129
* @return this CronDefinitionBuilder instance
130130
*/
131131
public CronDefinitionBuilder withCronValidation(final CronConstraint validation) {

src/main/java/com/cronutils/utils/StringUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,8 @@ public static boolean isNumeric(final CharSequence cs) {
227227
* StringUtils.join([null, "", "a"], ',') = "null,,a"
228228
* </pre>
229229
*
230-
* @param array the array of values to join together, may be null
231-
* @param separator the separator character to use, null treated as ""
230+
* @param parts - the array of values to join together, may be null
231+
* @param separator - the separator character to use, null treated as ""
232232
* @return the joined String, {@code null} if null array input
233233
*/
234234
public static String join(final Object[] parts, final String separator) {

0 commit comments

Comments
 (0)