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:
authorJamesNK <james@newtonking.com>2010-12-27 07:14:24 +0300
committerJamesNK <james@newtonking.com>2010-12-27 07:14:24 +0300
commit1297d64457363c37cc2794cf2031492400179336 (patch)
treebbcbe3917450d97660a6f168c146c43a9b0ce813 /Src/Newtonsoft.Json
parent87a2bbf831b1307f8763059872fa74203c60e09e (diff)
-Fixed DataSetConverter deserializing DataSet properties
Diffstat (limited to 'Src/Newtonsoft.Json')
-rw-r--r--Src/Newtonsoft.Json/Converters/DataSetConverter.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/Src/Newtonsoft.Json/Converters/DataSetConverter.cs b/Src/Newtonsoft.Json/Converters/DataSetConverter.cs
index ef4e872..8d7aebf 100644
--- a/Src/Newtonsoft.Json/Converters/DataSetConverter.cs
+++ b/Src/Newtonsoft.Json/Converters/DataSetConverter.cs
@@ -80,8 +80,6 @@ namespace Newtonsoft.Json.Converters
ds.Tables.Add(dt);
}
- reader.Read();
-
return ds;
}