Fix CoreLib build breaks
authorJan Kotas <jkotas@microsoft.com>
Sat, 27 Apr 2019 03:52:48 +0000 (20:52 -0700)
committerJan Kotas <jkotas@microsoft.com>
Sat, 27 Apr 2019 12:09:40 +0000 (05:09 -0700)
src/System.Private.CoreLib/shared/System/Resources/ResourceReader.Core.cs
src/System.Private.CoreLib/shared/System/Resources/ResourceReader.cs
src/System.Private.CoreLib/shared/System/Resources/RuntimeResourceSet.cs

index 9d25e45..80958b4 100644 (file)
@@ -2,6 +2,14 @@
 // The .NET Foundation licenses this file to you under the MIT license.
 // See the LICENSE file in the project root for more information.
 
+#nullable enable
+using System.Collections.Generic;
+using System.Diagnostics;
+using System.IO;
+using System.Reflection;
+using System.Text;
+using System.Threading;
+
 namespace System.Resources
 {
     partial class ResourceReader
index 510082d..156007b 100644 (file)
@@ -3,31 +3,18 @@
 // See the LICENSE file in the project root for more information.
 
 #nullable enable
-/*============================================================
-**
-** 
-** 
-**
-**
-** Purpose: Default way to read streams of resources on 
-** demand.
-**
-**         Version 2 support on October 6, 2003
-** 
-===========================================================*/
+using System;
+using System.Collections;
+using System.Collections.Generic;
+using System.Diagnostics;
+using System.IO;
+using System.Text;
 
 namespace System.Resources
 #if RESOURCES_EXTENSIONS
     .Extensions
 #endif
 {
-    using System;
-    using System.IO;
-    using System.Text;
-    using System.Collections;
-    using System.Collections.Generic;
-    using System.Diagnostics;
-
 #if RESOURCES_EXTENSIONS
     using ResourceReader = DeserializingResourceReader;
 #endif
index dbd74b2..00793c3 100644 (file)
@@ -17,6 +17,7 @@
 using System.Collections;
 using System.Collections.Generic;
 using System.Diagnostics;
+using System.IO;
 
 namespace System.Resources
 #if RESOURCES_EXTENSIONS