Skip to content

Commit 56b77ec

Browse files
committed
Code formatting cleaning.
1 parent 9568d3a commit 56b77ec

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

test/MsgPack.UnitTest/Serialization/SerializationTargetTest.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@
1919
#endregion -- License Terms --
2020

2121
using System;
22-
using System.Collections.Generic;
2322
using System.Linq;
24-
using System.Runtime.Serialization;
2523

2624
#if !MSTEST
2725
using NUnit.Framework;

test/MsgPack.UnitTest/Serialization/SerializationTargets.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public PlainClass()
7171
this.NonSerializedPublicReadOnlyField = 8;
7272
this.NonSerializedNonPublicField = 9;
7373
#endif // !NETFX_CORE && !SILVERLIGHT
74-
this._collectionReadOnlyProperty = new List<int> ();
74+
this._collectionReadOnlyProperty = new List<int>();
7575
}
7676
}
7777

@@ -146,7 +146,7 @@ public AnnotatedClass()
146146
this.NonSerializedPublicReadOnlyField = 8;
147147
this.NonSerializedNonPublicField = 9;
148148
#endif // !NETFX_CORE && !SILVERLIGHT
149-
this._collectionReadOnlyProperty = new List<int> ();
149+
this._collectionReadOnlyProperty = new List<int>();
150150
this.PublicPropertyPlain = 11;
151151
this.PublicFieldPlain = 12;
152152
this._publicReadOnlyPropertyPlain = 13;
@@ -233,7 +233,7 @@ public DataMamberClass()
233233
this.NonSerializedPublicReadOnlyField = 8;
234234
this.NonSerializedNonPublicField = 9;
235235
#endif // !NETFX_CORE && !SILVERLIGHT
236-
this._collectionReadOnlyProperty = new List<int> ();
236+
this._collectionReadOnlyProperty = new List<int>();
237237
this.PublicPropertyPlain = 11;
238238
this.PublicFieldPlain = 12;
239239
this._publicReadOnlyPropertyPlain = 13;

0 commit comments

Comments
 (0)