1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +02:00

Return Utc in GetLocalTimeZoneFromTzFile

This commit is contained in:
disarray2077 2022-07-04 23:39:52 -03:00
parent cbc4888853
commit 95bd231444

View file

@ -1942,7 +1942,8 @@ namespace System {
} }
// the data returned from the PAL is completely bogus; return a dummy entry // the data returned from the PAL is completely bogus; return a dummy entry
return CreateCustomTimeZone(c_localId, TimeSpan.Zero, c_localId, c_localId);*/ return CreateCustomTimeZone(c_localId, TimeSpan.Zero, c_localId, c_localId);*/
Runtime.NotImplemented(); // TODO: Not implemented.
return Utc;
} }
#endif // !FEATURE_WIN32_REGISTRY #endif // !FEATURE_WIN32_REGISTRY