remove a couple of redundent lines

This commit is contained in:
Richard Frith-Macdonald 2021-06-18 10:02:26 +01:00
parent a1b0c1c8db
commit b252f4067a

View file

@ -1159,9 +1159,7 @@ static NSMutableDictionary *credentialsCache = nil;
NSLog(@"Failed to make self-signed certificate using 'certtool'"); NSLog(@"Failed to make self-signed certificate using 'certtool'");
return nil; return nil;
} }
keyPath = standardizedPath(@"self-signed-key");
[self setData: key forTLSFile: keyPath]; [self setData: key forTLSFile: keyPath];
crtPath = standardizedPath(@"self-signed-crt");
[self setData: crt forTLSFile: crtPath]; [self setData: crt forTLSFile: crtPath];
} }