~tcurdt/sparkle/devel

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
//  SUProbingUpdateDriver.m
//  Sparkle
//
//  Created by Andy Matuschak on 5/7/08.
//  Copyright 2008 Andy Matuschak. All rights reserved.
//

#import "SUProbingUpdateDriver.h"


@implementation SUProbingUpdateDriver

// Stop as soon as we have an answer! The superclasses will already have taken care of notifying the delegate.

- (void)didFindValidUpdate
{
	[self abortUpdate];
}

- (void)didNotFindUpdate
{
	[self abortUpdate];
}

@end