Remove semicolons as mentioned by Fred

This commit is contained in:
Gregory John Casamento 2019-04-12 09:12:54 -04:00
parent 298f87d24e
commit b147a64ff5

View file

@ -839,28 +839,28 @@ static Class concreteMutableClass = nil;
return nil;
}
+ (id) URLFragmentAllowedCharacterSet;
+ (id) URLFragmentAllowedCharacterSet
{
return [self _staticSet: urlFragmentAllowedCharSet
length: sizeof(urlFragmentAllowedCharSet)
number: 15];
}
+ (id) URLPasswordAllowedCharacterSet;
+ (id) URLPasswordAllowedCharacterSet
{
return [self _staticSet: urlPasswordAllowedCharSet
length: sizeof(urlPasswordAllowedCharSet)
number: 16];
}
+ (id) URLPathAllowedCharacterSet;
+ (id) URLPathAllowedCharacterSet
{
return [self _staticSet: urlPathAllowedCharSet
length: sizeof(urlPathAllowedCharSet)
number: 17];
}
+ (id) URLQueryAllowedCharacterSet;
+ (id) URLQueryAllowedCharacterSet
{
return [self _staticSet: urlQueryAllowedCharSet
length: sizeof(urlQueryAllowedCharSet)