Skip to content

Commit

Permalink
Updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
benfortuna committed May 27, 2020
1 parent 50be10e commit 3a1db64
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/main/java/net/fortuna/ical4j/model/Recur.java
Expand Up @@ -206,6 +206,7 @@ private Recur() {
*
* @param aValue a string representation of a recurrence.
* @throws ParseException thrown when the specified string contains an invalid representation of an UNTIL date value
* @throws IllegalArgumentException where the recurrence string contains an unrecognised token
*/
public Recur(final String aValue) throws ParseException {
// default week start is Monday per RFC5545
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/net/fortuna/ical4j/model/property/RRule.java
Expand Up @@ -65,7 +65,8 @@ public RRule() {

/**
* @param value a rule string
* @throws ParseException where the specified string is not a valid rule
* @throws ParseException where the if the UNTIL part of the recurrence string is an invalid date representation
* @throws IllegalArgumentException where the recurrence string contains an unrecognised token
*/
public RRule(String value) throws ParseException {
super(RRULE, new Factory());
Expand Down

0 comments on commit 3a1db64

Please sign in to comment.