(fix) disabled bias computation for now

This commit is contained in:
Ludovic Marcotte
2017-01-05 09:27:16 -05:00
parent 160450f15d
commit d139d9e75d

View File

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