Changeset 519

Show
Ignore:
Timestamp:
04/03/2008 09:21:22 PM (4 years ago)
Author:
gbooker
Message:

Correctly enumerate the list of skipped directories to be placed in the skip set
Fixes #15

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/SapphireFrappliance/SapphireMetaData.m

    r504 r519  
    652652{ 
    653653        NSMutableSet *ret = [NSMutableSet set]; 
    654         NSEnumerator *colEnum = [[self collectionDirectories] objectEnumerator]; 
     654        NSEnumerator *colEnum = [skipCollection keyEnumerator]; 
    655655        NSString *collection; 
    656656        while((collection = [colEnum nextObject]) != nil) 
    657657        { 
    658                 if(![self skipCollection:collection]) 
     658                if([self skipCollection:collection]) 
    659659                        [ret addObject:collection]; 
    660660        }