Skip to content

Commit f1b82e2

Browse files
committed
I think this finishes up complex recurrence support and will complete #81
1 parent b53aada commit f1b82e2

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

core/src/main/kotlin/org/dreamexposure/discal/core/business/google/GoogleCalendarProviderService.kt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import org.dreamexposure.discal.core.crypto.KeyGenerator
1111
import org.dreamexposure.discal.core.enums.event.EventColor
1212
import org.dreamexposure.discal.core.exceptions.ApiException
1313
import org.dreamexposure.discal.core.extensions.google.asInstant
14-
import org.dreamexposure.discal.core.logger.LOGGER
1514
import org.dreamexposure.discal.core.`object`.new.*
1615
import org.springframework.stereotype.Component
1716
import java.time.Instant
@@ -196,9 +195,6 @@ class GoogleCalendarProviderService(
196195
if (spec.recur && spec.recurrence != null)
197196
event.recurrence = listOf(spec.recurrence.asRRule())
198197

199-
// TODO: Remove after debugging
200-
LOGGER.debug("Event recurrence rule for ${spec.name} | ${spec.recurrence?.asRRule()}")
201-
202198
// Create event in google
203199
val response = googleCalendarApiWrapper.createEvent(calendar.metadata, event)
204200
if (response.error != null || response.entity == null) throw ApiException(response.error?.error, response.error?.exception)

0 commit comments

Comments
 (0)