Updated Address Book scripts to work with new AppleScript API.
[adiumx.git] / Source / AIScannerDebug.m
blob5ddf6cf6ecc68490b98862589c2b120bb02faefb
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)scannerWithString:(NSString *)aString
21         NSParameterAssert(aString != nil);
22         
23         return [super scannerWithString:aString];       
26 - (id)initWithString:(NSString *)aString
28         NSParameterAssert(aString != nil);
30         return [super initWithString:aString];
33 #endif
35 @end