Skip to content

Commit

Permalink
noop(docs) point to a tracked TODO: dtinit#1065
Browse files Browse the repository at this point in the history
  • Loading branch information
jzacsh committed May 11, 2022
1 parent 2014d64 commit 0d751dc
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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<String> SUPPORTED_IMPORT_SERVICES =
ImmutableList.of(CALENDAR, CONTACTS, PHOTOS, MEDIA);
private static final ImmutableList<String> SUPPORTED_EXPORT_SERVICES =
Expand Down Expand Up @@ -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));
Expand Down

0 comments on commit 0d751dc

Please sign in to comment.