Update NSDictionaryController.m. Correct removeObjects:

This commit is contained in:
Gregory Casamento 2023-02-28 16:58:21 -05:00 committed by GitHub
parent 99e921ea35
commit 09e9cc0330
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -222,7 +222,7 @@
- (void) removeObjects: (NSArray *)array
{
[super addObjects: array];
[super removeObjects: array];
FOR_IN(NSDictionaryControllerKeyValuePair*, kvp, array)
{