From fdf6145c77ed962650a27e2b91e20ed6e5be83cd Mon Sep 17 00:00:00 2001 From: Tim Oliver Date: Thu, 10 Nov 2022 19:33:37 -0800 Subject: [PATCH] Remove un-used IGListCollectionContext from IGListAdapter Summary: Coming from the discussion in D40925763. It seems the reference to importing `IGListCollectionContext.` in `IGListAdapter` is unused. I was wondering if there was a deliberate design decision here to expose the `IGListCollectionContext` in here publicly at some point that never made it through. After consulting with some other iOS engineers, we agreed it's best not to expand the public facing surface area without some kind of tangible benefit, so lets remove this import to remove any more confusion. I'll do a proper audit later when I have more time to see how many other unused header references there are in this library. Differential Revision: D41179480 fbshipit-source-id: 2a96c199bd4357310e2517be8f0f154e7af91948 --- Source/IGListKit/IGListAdapter.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Source/IGListKit/IGListAdapter.h b/Source/IGListKit/IGListAdapter.h index 30076813..c395885f 100644 --- a/Source/IGListKit/IGListAdapter.h +++ b/Source/IGListKit/IGListAdapter.h @@ -20,7 +20,6 @@ #import "IGListAdapterMoveDelegate.h" #import "IGListAdapterPerformanceDelegate.h" #import "IGListAdapterUpdateListener.h" -#import "IGListCollectionContext.h" @protocol IGListUpdatingDelegate;