(fix) disabled bias computation for now

This commit is contained in:
Ludovic Marcotte
2017-01-05 09:27:16 -05:00
parent d5e04be1df
commit e7e1283fb3

View File

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