Skip to content

Commit

Permalink
Remove spurious semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
rfm committed Jun 7, 2019
1 parent 2425c42 commit 2cc6877
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Source/NSCharacterSet.m
Expand Up @@ -1166,27 +1166,27 @@ + (id) whitespaceCharacterSet
return AUTORELEASE([[abstractClass performSelector: _cmd] mutableCopy]);
}

+ (id) URLFragmentAllowedCharacterSet;
+ (id) URLFragmentAllowedCharacterSet
{
return AUTORELEASE([[abstractClass performSelector: _cmd] mutableCopy]);
}

+ (id) URLHostAllowedCharacterSet;
+ (id) URLHostAllowedCharacterSet
{
return AUTORELEASE([[abstractClass performSelector: _cmd] mutableCopy]);
}

+ (id) URLPasswordAllowedCharacterSet;
+ (id) URLPasswordAllowedCharacterSet
{
return AUTORELEASE([[abstractClass performSelector: _cmd] mutableCopy]);
}

+ (id) URLPathAllowedCharacterSet;
+ (id) URLPathAllowedCharacterSet
{
return AUTORELEASE([[abstractClass performSelector: _cmd] mutableCopy]);
}

+ (id) URLQueryAllowedCharacterSet;
+ (id) URLQueryAllowedCharacterSet
{
return AUTORELEASE([[abstractClass performSelector: _cmd] mutableCopy]);
}
Expand Down

0 comments on commit 2cc6877

Please sign in to comment.