Skip to content

Commit 1dd20ba

Browse files
committed
Fix curly braces
1 parent d8bf6c2 commit 1dd20ba

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

ObjectiveGit/GTRepository+Pull.m

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ @implementation GTRepository (Pull)
2323

2424
#pragma mark - Pull
2525

26-
- (BOOL)pullBranch:(GTBranch *)branch fromRemote:(GTRemote *)remote withOptions:(NSDictionary *)options error:(NSError **)error progress:(GTRemoteFetchTransferProgressBlock)progressBlock
27-
{
26+
- (BOOL)pullBranch:(GTBranch *)branch fromRemote:(GTRemote *)remote withOptions:(NSDictionary *)options error:(NSError **)error progress:(GTRemoteFetchTransferProgressBlock)progressBlock {
2827
NSParameterAssert(branch);
2928
NSParameterAssert(remote);
3029

@@ -133,8 +132,7 @@ - (BOOL)pullBranch:(GTBranch *)branch fromRemote:(GTRemote *)remote withOptions:
133132
return NO;
134133
}
135134

136-
- (BOOL)analyzeMerge:(GTMergeAnalysis *)analysis fromBranch:(GTBranch *)fromBranch error:(NSError **)error
137-
{
135+
- (BOOL)analyzeMerge:(GTMergeAnalysis *)analysis fromBranch:(GTBranch *)fromBranch error:(NSError **)error {
138136
NSParameterAssert(analysis != NULL);
139137
NSParameterAssert(fromBranch != nil);
140138

0 commit comments

Comments
 (0)