Changeset 519

Show
Ignore:
Timestamp:
04/03/08 21:21:22 (8 months ago)
Author:
gbooker
Message:

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

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 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        }