aboutsummaryrefslogtreecommitdiff
path: root/src/ProtocolBuffers/CodedInputStream.cs
diff options
context:
space:
mode:
authorcsharptest <roger@csharptest.net>2010-11-05 14:49:08 -0500
committercsharptest <roger@csharptest.net>2010-11-05 14:49:08 -0500
commit80e73b922e5b8e0f9352a934018ebc1af518a085 (patch)
tree395f2043ad0e5c79510789150f6c3847396ef44d /src/ProtocolBuffers/CodedInputStream.cs
parent97f86ce9de5cfedce0dc1db4dbcef739807fe9ef (diff)
downloadprotobuf-80e73b922e5b8e0f9352a934018ebc1af518a085.tar.gz
protobuf-80e73b922e5b8e0f9352a934018ebc1af518a085.tar.bz2
protobuf-80e73b922e5b8e0f9352a934018ebc1af518a085.zip
Completed abstract lite builder and message
Diffstat (limited to 'src/ProtocolBuffers/CodedInputStream.cs')
-rw-r--r--src/ProtocolBuffers/CodedInputStream.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ProtocolBuffers/CodedInputStream.cs b/src/ProtocolBuffers/CodedInputStream.cs
index 9173423c..df177161 100644
--- a/src/ProtocolBuffers/CodedInputStream.cs
+++ b/src/ProtocolBuffers/CodedInputStream.cs
@@ -261,7 +261,7 @@ namespace Google.ProtocolBuffers {
/// Reads a group field value from the stream.
/// </summary>
public void ReadGroup(int fieldNumber, IBuilderLite builder,
- ExtensionRegistryLite extensionRegistry) {
+ ExtensionRegistry extensionRegistry) {
if (recursionDepth >= recursionLimit) {
throw InvalidProtocolBufferException.RecursionLimitExceeded();
}
@@ -290,7 +290,7 @@ namespace Google.ProtocolBuffers {
/// <summary>
/// Reads an embedded message field value from the stream.
/// </summary>
- public void ReadMessage(IBuilderLite builder, ExtensionRegistryLite extensionRegistry) {
+ public void ReadMessage(IBuilderLite builder, ExtensionRegistry extensionRegistry) {
int length = (int) ReadRawVarint32();
if (recursionDepth >= recursionLimit) {
throw InvalidProtocolBufferException.RecursionLimitExceeded();