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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs
diff options
context:
space:
mode:
authorGeoff Norton <grompf@sublimeintervention.com>2010-04-01 10:17:30 +0400
committerGeoff Norton <grompf@sublimeintervention.com>2010-04-01 10:17:30 +0400
commit482a8d2725e3183d755994c96430c18316b6f407 (patch)
treed67578e8a87cc1651f0f4468b950d0f1ae2f204b /mcs
parent5c65af3e9a2a9bff0a60238a9b2aaf084eb8a728 (diff)
Fix this
svn path=/branches/mono-2-6/mcs/; revision=154610
Diffstat (limited to 'mcs')
-rw-r--r--mcs/class/System.Json/System.Json/JsonReader.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System.Json/System.Json/JsonReader.cs b/mcs/class/System.Json/System.Json/JsonReader.cs
index 176f638bddb..5397a066462 100644
--- a/mcs/class/System.Json/System.Json/JsonReader.cs
+++ b/mcs/class/System.Json/System.Json/JsonReader.cs
@@ -85,7 +85,7 @@ namespace System.Json
return new JsonPrimitive (true);
case 'f':
Expect ("false");
- return new JsonPrimitive (true);
+ return new JsonPrimitive (false);
case 'n':
Expect ("null");
// FIXME: what should we return?