(fix) disabled bias computation for now

pull/232/head
Ludovic Marcotte 2017-01-05 09:27:16 -05:00
parent d5e04be1df
commit e7e1283fb3
1 changed files with 4 additions and 0 deletions

View File

@ -114,6 +114,7 @@
- (NSString *) bias - (NSString *) bias
{ {
#if 0
NSTimeZone *userTimeZone; NSTimeZone *userTimeZone;
NSInteger secs; NSInteger secs;
@ -121,6 +122,9 @@
secs = [userTimeZone secondsFromGMT]; secs = [userTimeZone secondsFromGMT];
return [NSString stringWithFormat: @"%i", (secs/60)]; return [NSString stringWithFormat: @"%i", (secs/60)];
#else
return @"0";
#endif
} }
@end @end