Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/Newtonsoft.Json.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Src/Newtonsoft.Json/Schema/JsonSchemaResolver.cs')
-rw-r--r--Src/Newtonsoft.Json/Schema/JsonSchemaResolver.cs9
1 files changed, 4 insertions, 5 deletions
diff --git a/Src/Newtonsoft.Json/Schema/JsonSchemaResolver.cs b/Src/Newtonsoft.Json/Schema/JsonSchemaResolver.cs
index d7c514f..40952ad 100644
--- a/Src/Newtonsoft.Json/Schema/JsonSchemaResolver.cs
+++ b/Src/Newtonsoft.Json/Schema/JsonSchemaResolver.cs
@@ -23,13 +23,12 @@
// OTHER DEALINGS IN THE SOFTWARE.
#endregion
-using System;
using System.Collections.Generic;
+#if NET20
+using Newtonsoft.Json.Utilities.LinqBridge;
+#else
using System.Linq;
-using System.Net;
-using System.Text;
-using System.Globalization;
-using Newtonsoft.Json.Utilities;
+#endif
namespace Newtonsoft.Json.Schema
{