Skip to content

Commit

Permalink
Fixed the return type for the Recur.Builder rscale and skip methods i…
Browse files Browse the repository at this point in the history
…n order not to declare raw return type
  • Loading branch information
lyubomyr-shaydariv committed Mar 18, 2023
1 parent 33849d6 commit 9ad0d9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/net/fortuna/ical4j/model/Recur.java
Expand Up @@ -1104,7 +1104,7 @@ public Builder<T> frequency(Frequency frequency) {
return this;
}

public Builder skip(Skip skip) {
public Builder<T> skip(Skip skip) {
this.skip = skip;
return this;
}
Expand All @@ -1114,7 +1114,7 @@ public Builder<T> until(T until) {
return this;
}

public Builder rscale(RScale rscale) {
public Builder<T> rscale(RScale rscale) {
this.rscale = rscale;
return this;
}
Expand Down

0 comments on commit 9ad0d9b

Please sign in to comment.