Skip to content

Commit f63763d

Browse files
committed
Singleline-ify
#FollowTheStyleGuide
1 parent 51f6656 commit f63763d

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

ObjectiveGit/GTRepository.m

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -290,10 +290,7 @@ - (id)lookUpObjectByGitOid:(const git_oid *)oid objectType:(GTObjectType)type er
290290
if (error != NULL) {
291291
char oid_str[GIT_OID_HEXSZ+1];
292292
git_oid_tostr(oid_str, sizeof(oid_str), oid);
293-
*error = [NSError git_errorFor:gitError
294-
description:@"Failed to lookup object"
295-
userInfo:@{GTGitErrorOID: [GTOID oidWithGitOid:oid]}
296-
failureReason:@"The object %s couldn't be found in the repository.", oid_str];
293+
*error = [NSError git_errorFor:gitError description:@"Failed to lookup object" userInfo:@{GTGitErrorOID: [GTOID oidWithGitOid:oid]} failureReason:@"The object %s couldn't be found in the repository.", oid_str];
297294
}
298295
return nil;
299296
}

0 commit comments

Comments
 (0)