Remove redundant internal access modifier

This commit is contained in:
Matt Rubin 2019-04-11 20:32:40 -04:00
parent a8d0000168
commit e16d5c6baa

View File

@ -10,7 +10,7 @@ internal extension NSError {
/// :param: libGit2PointOfFailure The name of the libgit2 function that produced the
/// error code.
/// :returns: An NSError with a libgit2 error domain, code, and message.
internal convenience init(gitError errorCode: Int32, pointOfFailure: String? = nil) {
convenience init(gitError errorCode: Int32, pointOfFailure: String? = nil) {
let code = Int(errorCode)
var userInfo: [String: String] = [:]