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>2009-01-04 08:26:26 +0300
committerJamesNK <james@newtonking.com>2009-01-04 08:26:26 +0300
commit399033059b9e30e1205fc108d8b90cc9c6e1f0d8 (patch)
tree473a2a4087e8c28ec056c20b417195e40a631ed3 /Src/Newtonsoft.Json.Tests/TestObjects/DefaultValueAttributeTestClass.cs
parent0319263756212f4a1875cda6534b9b8e1fb53188 (diff)
-Added IJsonLineInfo. Implemented by JsonTextReader, JsonTokenReader, JsonValidatingReader, JToken
-Added line details to JsonTextReader exception messages and JsonValidatingReader errors -Change JsonSchemaGenerator to disable additional properties on sealed classes -Fixed JsonSchemaGenerator to not output enum values and options for flag enums
Diffstat (limited to 'Src/Newtonsoft.Json.Tests/TestObjects/DefaultValueAttributeTestClass.cs')
-rw-r--r--Src/Newtonsoft.Json.Tests/TestObjects/DefaultValueAttributeTestClass.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Newtonsoft.Json.Tests/TestObjects/DefaultValueAttributeTestClass.cs b/Src/Newtonsoft.Json.Tests/TestObjects/DefaultValueAttributeTestClass.cs
index 861c709..eeefa5e 100644
--- a/Src/Newtonsoft.Json.Tests/TestObjects/DefaultValueAttributeTestClass.cs
+++ b/Src/Newtonsoft.Json.Tests/TestObjects/DefaultValueAttributeTestClass.cs
@@ -30,7 +30,7 @@ namespace Newtonsoft.Json.Tests.TestObjects
#if !PocketPC
[Description("DefaultValueAttributeTestClass description!")]
#endif
- public class DefaultValueAttributeTestClass
+ public sealed class DefaultValueAttributeTestClass
{
[DefaultValue("TestProperty1Value")]
public string TestProperty1 { get; set; }