From 0d751dc0e9fcf7984d064aa1b9ced762304803c3 Mon Sep 17 00:00:00 2001 From: Jonathan Zacsh Date: Wed, 11 May 2022 12:27:34 -0500 Subject: [PATCH] noop(docs) point to a tracked TODO: #1065 --- .../transfer/microsoft/MicrosoftTransferExtension.java | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/extensions/data-transfer/portability-data-transfer-microsoft/src/main/java/org/datatransferproject/transfer/microsoft/MicrosoftTransferExtension.java b/extensions/data-transfer/portability-data-transfer-microsoft/src/main/java/org/datatransferproject/transfer/microsoft/MicrosoftTransferExtension.java index ecee62541..ad441bd35 100644 --- a/extensions/data-transfer/portability-data-transfer-microsoft/src/main/java/org/datatransferproject/transfer/microsoft/MicrosoftTransferExtension.java +++ b/extensions/data-transfer/portability-data-transfer-microsoft/src/main/java/org/datatransferproject/transfer/microsoft/MicrosoftTransferExtension.java @@ -40,9 +40,9 @@ public class MicrosoftTransferExtension implements TransferExtension { private static final String MEDIA = "MEDIA"; private static final String OFFLINE_DATA = "OFFLINE-DATA"; - // TODO(jzacsh,wmorland) don't keep adding here - just have the converters invoked automatically - // when Media isn't supported on one or the other side of this equation; this is just a WIP - // prototype to show the concept of converters at play. + // TODO(#1065) don't keep adding here - just have the converters invoked automatically when Media + // isn't supported on one or the other side of this equation; this is just a WIP prototype to show + // the concept of converters at play. private static final ImmutableList SUPPORTED_IMPORT_SERVICES = ImmutableList.of(CALENDAR, CONTACTS, PHOTOS, MEDIA); private static final ImmutableList SUPPORTED_EXPORT_SERVICES = @@ -141,8 +141,7 @@ PHOTOS, new MicrosoftPhotosImporter(BASE_GRAPH_URL, client, mapper, jobStore, mo exporterBuilder.put( CALENDAR, new MicrosoftCalendarExporter(BASE_GRAPH_URL, client, mapper, transformerService)); - // TODO(jzacsh,wmorland) don't require this manual mapping; just do this automatically inside - // DTP + // TODO(#1065) don't require this manual mapping; just do this automatically inside DTP MicrosoftPhotosExporter photosExporter = new MicrosoftPhotosExporter(credentialFactory, jsonFactory, monitor); exporterBuilder.put(PHOTOS, photosExporter); exporterBuilder.put(MEDIA, new PhotoToMediaConversionExporter(photosExporter));