Skip to content
Snippets Groups Projects
Commit 681c27e7 authored by C.W. Betts's avatar C.W. Betts
Browse files

Fix an improper property.

parent 4834f0e3
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -18,10 +18,8 @@
@property(nonatomic, assign) BOOL blockAtNewline;
@property(nonatomic, assign) BOOL isBlocked;
 
@property (readonly) int bytesPerCall;
- (void)setBytesPerCall:(int)newBytesPerCall;
@property (readonly) float delayBetweenCalls;
- (void)setDelayBetweenCalls:(float)newDelayBetweenCalls;
@property int bytesPerCall;
@property float delayBetweenCalls;
- (void)updateValues;
 
@end
Loading
Loading
@@ -16,6 +16,9 @@
float delayBetweenCalls_;
}
 
@synthesize delayBetweenCalls = delayBetweenCalls_;
@synthesize bytesPerCall = bytesPerCall_;
- (instancetype)initWithBytesPerCallPrefKey:(NSString*)bytesPerCallKey
defaultValue:(int)bytesPerCallDefault
delayBetweenCallsPrefKey:(NSString*)delayBetweenCallsKey
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment