Skip to content

Commit

Permalink
Unnecessary functions causing lint recursion errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
arran4 committed Jan 8, 2024
1 parent a55aac2 commit 5f3bef9
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions components.go
Original file line number Diff line number Diff line change
Expand Up @@ -424,10 +424,6 @@ func (event *VEvent) SetLastModifiedAt(t time.Time, props ...PropertyParameter)
event.SetProperty(ComponentPropertyLastModified, t.UTC().Format(icalTimestampFormatUtc), props...)
}

func (event *VEvent) SetLocation(s string, props ...PropertyParameter) {
event.SetLocation(s, props...)
}

func (event *VEvent) SetGeo(lat interface{}, lng interface{}, props ...PropertyParameter) {
event.setGeo(lat, lng, props...)
}
Expand Down Expand Up @@ -555,10 +551,6 @@ func (todo *VTodo) SetPercentComplete(p int, props ...PropertyParameter) {
todo.SetProperty(ComponentPropertyPercentComplete, strconv.Itoa(p), props...)
}

func (todo *VTodo) SetLocation(s string, props ...PropertyParameter) {
todo.SetLocation(s, props...)
}

func (todo *VTodo) SetGeo(lat interface{}, lng interface{}, props ...PropertyParameter) {
todo.setGeo(lat, lng, props...)
}
Expand Down

0 comments on commit 5f3bef9

Please sign in to comment.