Two related questions here.
1) What setting should be used to make a multiline method a single line name? For example, I have this:
- (NSArray *)nodesForXPath:(NSString *)xpath
namespaces:(NSDictionary *)namespaces
error:(NSError **)error {
What my current configuration turns into this:
- (NSArray*)nodesForXPath:(NSString*)xpath
namespaces:(NSDictionary*)namespaces
error:(NSError * *)error {
But I want it to look like this:
- (NSArray*)nodesForXPath:(NSString*)xpath namespaces:(NSDictionary*)namespaces error:(NSError * *)error {
2) How to remove spaces between double asterisks in method declarations?
I can post the current configuration if it is useful.
source
share