copying the local time zone just, returns it

This commit is contained in:
Richard Frith-Macdonald 2017-12-19 11:42:53 +00:00
parent 242eb7165b
commit f319725536

View file

@ -564,6 +564,16 @@ static NSString *_time_zone_path(NSString *subpath, NSString *type)
return self;
}
- (id) copy
{
return self;
}
- (id) copyWithZone: (NSZone*)z
{
return self;
}
- (NSData*) data
{
return [[NSTimeZoneClass defaultTimeZone] data];