Introduce prefix for category methods to prevent collisions

See:
https://github.com/iabudiab/HTMLKit/issues/35
This commit is contained in:
iska
2019-03-26 23:23:08 +01:00
parent 0fe6b7c42d
commit 7cbfdb9c78
23 changed files with 183 additions and 106 deletions
+1 -1
View File
@@ -170,7 +170,7 @@
- (BOOL)consumeHexNumber:(unsigned long long *)result
{
NSCharacterSet *set = [NSCharacterSet HTMLHexNumberCharacterSet];
NSCharacterSet *set = [NSCharacterSet htmlkit_HTMLHexNumberCharacterSet];
NSString *string = nil;
BOOL success = [_scanner scanCharactersFromSet:set intoString:&string];