Skip to content

Commit 05df39f

Browse files
committed
Removed unused method
1 parent 8ea8aa3 commit 05df39f

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

Incremental Store/EncryptedStore.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ typedef NS_ENUM(NSInteger, EncryptedStoreError)
4242
- (id)valueForProperty:(NSPropertyDescription *)property
4343
inStatement:(sqlite3_stmt *)statement
4444
atIndex:(int)index;
45-
- (NSString *)foreignKeyColumnForRelationshipP:(NSRelationshipDescription *)relationship;
4645
- (NSString *)foreignKeyColumnForRelationship:(NSRelationshipDescription *)relationship;
4746
- (void)bindProperty:(NSPropertyDescription *)property
4847
withValue:(id)value

Incremental Store/EncryptedStore.m

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2634,11 +2634,6 @@ - (void)parseExpression:(NSExpression *)expression
26342634
}
26352635
}
26362636

2637-
- (NSString *)foreignKeyColumnForRelationshipP:(NSRelationshipDescription *)relationship {
2638-
NSEntityDescription *destination = [relationship destinationEntity];
2639-
return [NSString stringWithFormat:@"%@.__objectid", [destination name]];
2640-
}
2641-
26422637
- (NSString *)foreignKeyColumnForRelationship:(NSRelationshipDescription *)relationship {
26432638
return [NSString stringWithFormat:@"%@__objectid", [relationship name]];
26442639
}

0 commit comments

Comments
 (0)