aboutsummaryrefslogtreecommitdiff
path: root/src/ProtocolBuffers/SortedList.cs
diff options
context:
space:
mode:
authorcsharptest <roger@csharptest.net>2011-05-20 15:15:34 -0500
committerrogerk <devnull@localhost>2011-05-20 15:15:34 -0500
commit71f662c33e9938951eec3da97140aed25aa815d7 (patch)
treec322e13686cad5c8bff9e54d7585fc8e4adf6537 /src/ProtocolBuffers/SortedList.cs
parentd965c666ecf405f4e997ab251e72551508a14678 (diff)
downloadprotobuf-71f662c33e9938951eec3da97140aed25aa815d7.tar.gz
protobuf-71f662c33e9938951eec3da97140aed25aa815d7.tar.bz2
protobuf-71f662c33e9938951eec3da97140aed25aa815d7.zip
reformatted all code to .NET standard formatting
Diffstat (limited to 'src/ProtocolBuffers/SortedList.cs')
-rw-r--r--src/ProtocolBuffers/SortedList.cs13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/ProtocolBuffers/SortedList.cs b/src/ProtocolBuffers/SortedList.cs
index da186ee5..54bd8b20 100644
--- a/src/ProtocolBuffers/SortedList.cs
+++ b/src/ProtocolBuffers/SortedList.cs
@@ -1,4 +1,5 @@
#region Copyright notice and license
+
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// http://github.com/jskeet/dotnet-protobufs/
@@ -30,6 +31,7 @@
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
#endregion
#if SILVERLIGHT2
@@ -110,14 +112,8 @@ namespace Google.ProtocolBuffers
public TValue this[TKey key]
{
- get
- {
- return wrapped[key];
- }
- set
- {
- wrapped[key] = value;
- }
+ get { return wrapped[key]; }
+ set { wrapped[key] = value; }
}
public void Add(KeyValuePair<TKey, TValue> item)
@@ -169,4 +165,5 @@ namespace Google.ProtocolBuffers
}
}
}
+
#endif \ No newline at end of file