aboutsummaryrefslogtreecommitdiff
path: root/src/ProtocolBuffers/SortedList.cs
diff options
context:
space:
mode:
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