If I create an event and use VEvent.setSummary() and then use it again, two SUMMARY properties end up getting added to the event. This is because they use CalendarObject.addProperty().
Shouldn't the VEvent setters use CalendarObject.setProperty() instead of CalendarObject.addProperty()?
If I create an event and use
VEvent.setSummary()
and then use it again, twoSUMMARY
properties end up getting added to the event. This is because they useCalendarObject.addProperty()
.Shouldn't the
VEvent
setters useCalendarObject.setProperty()
instead ofCalendarObject.addProperty()
?