From 9928441649bde7a5e3bb84808821f1a5bef0bba6 Mon Sep 17 00:00:00 2001 From: csharptest Date: Fri, 3 Jun 2011 14:51:06 -0500 Subject: Canged CodedInputStream.ReadTag to use boolean result with out params to support reading a field name rather than a field tag. --- .../TestProtos/UnitTestNoGenericServicesProtoFile.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ProtocolBuffers.Test/TestProtos/UnitTestNoGenericServicesProtoFile.cs') diff --git a/src/ProtocolBuffers.Test/TestProtos/UnitTestNoGenericServicesProtoFile.cs b/src/ProtocolBuffers.Test/TestProtos/UnitTestNoGenericServicesProtoFile.cs index 994d5308..9897e230 100644 --- a/src/ProtocolBuffers.Test/TestProtos/UnitTestNoGenericServicesProtoFile.cs +++ b/src/ProtocolBuffers.Test/TestProtos/UnitTestNoGenericServicesProtoFile.cs @@ -252,7 +252,7 @@ namespace Google.ProtocolBuffers.TestProtos.NoGenericService { while (input.ReadTag(out tag, out field_name)) { switch (tag) { case 0: { - throw InvalidProtocolBufferException.InvalidTag(); + throw pb::InvalidProtocolBufferException.InvalidTag(); } default: { if (pb::WireFormat.IsEndGroupTag(tag)) { -- cgit v1.2.3