Meged [17972]: Prevent attempts to delete logs on multiple threads at once. Fix searc...
[adiumx.git] / Source / AIScannerDebug.m
blobf3cd8834f36e6b9acbe0c4798bb4e0e0bfa8618a
1 //
2 //  AIScannerDebug.m
3 //  Adium
4 //
5 //  Created by Evan Schoenberg on 9/27/06.
6 //
8 #import "AIScannerDebug.h"
10 @implementation AIScannerDebug
12 #ifdef DEBUG_BUILD
14 + (void)load
16         [self poseAsClass:[NSScanner class]];
19 - (id)initWithString:(NSString *)aString
21         NSParameterAssert(aString != nil);
23         return [super initWithString:aString];
26 #endif
28 @end