Skip to content

Commit

Permalink
ICU4N.Globalization.UChar: Reviewed and removed some TODOs
Browse files Browse the repository at this point in the history
  • Loading branch information
NightOwl888 committed Oct 9, 2019
1 parent 40f93ba commit 4040a98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ICU4N/Globalization/UCharacter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2616,7 +2616,7 @@ public static class BidiPairedBracketType
/// Same as <see cref="Character.MinCodePoint"/>, same integer value as <see cref="Char.MinValue"/>.
/// </summary>
/// <stable>ICU 2.1</stable>
public const int MinValue = Character.MinCodePoint; // ICU4N TODO: Change to Char.MinValue
public const int MinValue = Character.MinCodePoint;

/// <summary>
/// The highest Unicode code point value (scalar value), constant U+10FFFF (uses 21 bits).
Expand All @@ -2626,7 +2626,7 @@ public static class BidiPairedBracketType
/// which is still a char with the value U+FFFF.
/// </summary>
/// <stable>ICU 2.1</stable>
public const int MaxValue = Character.MaxCodePoint; // ICU4N TODO: Change to Char.MaxValue (and check documentation to ensure it is right)
public const int MaxValue = Character.MaxCodePoint;

/// <summary>
/// The minimum value for Supplementary code points, constant U+10000.
Expand Down

0 comments on commit 4040a98

Please sign in to comment.