From c895b2e6273c19123d44ae8bf0f8fea638e3a725 Mon Sep 17 00:00:00 2001 From: GoldenCrystal Date: Thu, 20 Nov 2014 21:42:04 +0100 Subject: [PATCH] Small non-bug fixes on HangulInfo class. --- UnicodeInformation/HangulInfo.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/UnicodeInformation/HangulInfo.cs b/UnicodeInformation/HangulInfo.cs index 23789c9..523f44f 100644 --- a/UnicodeInformation/HangulInfo.cs +++ b/UnicodeInformation/HangulInfo.cs @@ -8,7 +8,7 @@ namespace System.Unicode { internal static class HangulInfo { - // Constants defined at page 144 of the Unicode 7.0 Standard (3.12) + // Constants defined on page 144 of the Unicode 7.0 Standard (3.12) private const ushort SBase = 0xAC00; private const ushort LBase = 0x1100; private const ushort VBase = 0x1161; @@ -38,7 +38,6 @@ namespace System.Unicode "LB", "LS", "LT", "LP", "LH", "M", "B", "BS", "S", "SS", "NG", "J", "C", "K", "T", "P", "H" }; - private static int lIndex; // Algorithm defined on page 150 of the Unicode 7.0 Standard (3.12) internal static string GetHangulName(char codePoint)