diff --git a/Wino.Core/Integration/Processors/DefaultChangeProcessor.cs b/Wino.Core/Integration/Processors/DefaultChangeProcessor.cs
index cdb09724..e7cab535 100644
--- a/Wino.Core/Integration/Processors/DefaultChangeProcessor.cs
+++ b/Wino.Core/Integration/Processors/DefaultChangeProcessor.cs
@@ -102,19 +102,7 @@ public interface IOutlookChangeProcessor : IDefaultChangeProcessor
/// Empty string to assign folder delta sync for.
Task ResetFolderDeltaTokenAsync(Guid folderId);
- ///
- /// Outlook may expire account's delta token after a while.
- /// This will result returning 410 GONE response from the API for synchronizing folders.
- /// This method resets the token for the given account for re-syncing folders.
- ///
- /// Account identifier to reset delta token for.
- /// Empty string to assign account delta sync for.
- Task ResetAccountDeltaTokenAsync(Guid accountId);
-
-
Task ManageCalendarEventAsync(Microsoft.Graph.Models.Event calendarEvent, AccountCalendar assignedCalendar, MailAccount organizerAccount);
-
-
}
public interface IImapChangeProcessor : IDefaultChangeProcessor
diff --git a/Wino.Core/Synchronizers/OutlookSynchronizer.cs b/Wino.Core/Synchronizers/OutlookSynchronizer.cs
index dfca959d..467bff20 100644
--- a/Wino.Core/Synchronizers/OutlookSynchronizer.cs
+++ b/Wino.Core/Synchronizers/OutlookSynchronizer.cs
@@ -221,6 +221,7 @@ public class OutlookSynchronizer : WinoSynchronizer.CreatePageIterator(_graphClient, messageCollectionPage, async (item) =>
@@ -500,7 +510,7 @@ public class OutlookSynchronizer : WinoSynchronizer