Fix unused field warnings
authorJan Kotas <jkotas@microsoft.com>
Wed, 22 Nov 2017 04:40:14 +0000 (20:40 -0800)
committerJan Kotas <jkotas@microsoft.com>
Wed, 22 Nov 2017 12:34:37 +0000 (04:34 -0800)
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
src/mscorlib/shared/System/Globalization/DateTimeFormatInfo.cs

index 2e824c9..b6a4621 100644 (file)
@@ -339,13 +339,6 @@ namespace System.Globalization
             Debug.Assert(this.allYearMonthPatterns.Length > 0, "[DateTimeFormatInfo.Populate] Expected some year month patterns");
         }
 
-        private bool _useUserOverride;
-
-        // This was synthesized by Whidbey so we knew what words might appear in the middle of a date string
-        // Now we always synthesize so its not helpful
-
-        internal String[] m_dateWords = null;
-
         // Returns a default DateTimeFormatInfo that will be universally
         // supported and constant irrespective of the current culture.
         // Used by FromString methods.
@@ -1086,13 +1079,6 @@ namespace System.Globalization
         **      concatation every time somebody uses this form
         ==============================================================================*/
 
-        /*=================================DateTimeOffsetPattern==========================
-        **Property: Return the default pattern DateTimeOffset : shortDate + long time + time zone offset
-        **Note: This is used by DateTimeFormat.cs to get the pattern for short Date + long time +  time zone offset
-        **      We put this internal property here so that we can avoid doing the
-        **      concatation every time somebody uses this form
-        ==============================================================================*/
-
         internal String DateTimeOffsetPattern
         {
             get
@@ -2360,7 +2346,7 @@ namespace System.Globalization
 
                 // We need to rescan the date words since we're always synthetic
                 scanner = new DateTimeFormatInfoScanner();
-                m_dateWords = dateWords = scanner.GetDateWordsOfDTFI(this);
+                dateWords = scanner.GetDateWordsOfDTFI(this);
                 // Ensure the formatflags is initialized.
                 DateTimeFormatFlags flag = FormatFlags;