mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-19 16:40:26 +02:00
Fixed TimeSpan formatting
This commit is contained in:
parent
86a97a12e5
commit
3a332a0bcf
1 changed files with 1 additions and 2 deletions
|
@ -347,7 +347,6 @@ namespace System.Globalization {
|
|||
|
||||
public void Dispose() mut
|
||||
{
|
||||
DeleteAndNullify!(AppCompatLiteral);
|
||||
DeleteAndNullify!(literals);
|
||||
if (ownedStrs != null)
|
||||
{
|
||||
|
@ -485,7 +484,7 @@ namespace System.Globalization {
|
|||
}
|
||||
|
||||
Contract.Assert(field == 5);
|
||||
AppCompatLiteral = new String(MinuteSecondSep, SecondFractionSep);
|
||||
AppCompatLiteral = AddOwnedStr(new String(MinuteSecondSep, SecondFractionSep));
|
||||
|
||||
Contract.Assert(0 < dd && dd < 3, "0 < dd && dd < 3, Bug in System.Globalization.DateTimeFormatInfo.FullTimeSpan[Positive|Negative]Pattern");
|
||||
Contract.Assert(0 < hh && hh < 3, "0 < hh && hh < 3, Bug in System.Globalization.DateTimeFormatInfo.FullTimeSpan[Positive|Negative]Pattern");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue