aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorcsharptest <roger@csharptest.net>2011-07-14 13:14:26 -0500
committerrogerk <devnull@localhost>2011-07-14 13:14:26 -0500
commit398a7f526c9b1e69531ab1169d0e62fa4c2eadf0 (patch)
tree738fb0119b70b36b7e93e1f925b7dd16c8cc4ae9 /src
parentb73bd168d4c816da81628df35b53685d2cf0ef8c (diff)
downloadprotobuf-398a7f526c9b1e69531ab1169d0e62fa4c2eadf0.tar.gz
protobuf-398a7f526c9b1e69531ab1169d0e62fa4c2eadf0.tar.bz2
protobuf-398a7f526c9b1e69531ab1169d0e62fa4c2eadf0.zip
Removed unnessary parital declaration
Diffstat (limited to 'src')
-rw-r--r--src/ProtocolBuffers/CodedInputStream.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ProtocolBuffers/CodedInputStream.cs b/src/ProtocolBuffers/CodedInputStream.cs
index c367cc3c..e6110fde 100644
--- a/src/ProtocolBuffers/CodedInputStream.cs
+++ b/src/ProtocolBuffers/CodedInputStream.cs
@@ -58,7 +58,7 @@ namespace Google.ProtocolBuffers
/// TODO(jonskeet): Consider whether recursion and size limits shouldn't be readonly,
/// set at construction time.
/// </remarks>
- public sealed partial class CodedInputStream : ICodedInputStream
+ public sealed class CodedInputStream : ICodedInputStream
{
private readonly byte[] buffer;
private int bufferSize;