aboutsummaryrefslogtreecommitdiff
path: root/src/ProtoGen
diff options
context:
space:
mode:
authorcsharptest <roger@csharptest.net>2011-06-17 20:12:41 -0500
committerrogerk <devnull@localhost>2011-06-17 20:12:41 -0500
commitafff2c655c1d39b8f6cd7756c190a559d15134d1 (patch)
tree6f27d495aed0479496c9c731ef095b68462f2a7b /src/ProtoGen
parent579bb3defe8ab062abfc9f812cdea529d0929d69 (diff)
downloadprotobuf-afff2c655c1d39b8f6cd7756c190a559d15134d1.tar.gz
protobuf-afff2c655c1d39b8f6cd7756c190a559d15134d1.tar.bz2
protobuf-afff2c655c1d39b8f6cd7756c190a559d15134d1.zip
Fixed A few last methods taking CodedInputStream
Diffstat (limited to 'src/ProtoGen')
-rw-r--r--src/ProtoGen/ServiceInterfaceGenerator.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ProtoGen/ServiceInterfaceGenerator.cs b/src/ProtoGen/ServiceInterfaceGenerator.cs
index 4e31dcf2..fe0a8b4a 100644
--- a/src/ProtoGen/ServiceInterfaceGenerator.cs
+++ b/src/ProtoGen/ServiceInterfaceGenerator.cs
@@ -274,7 +274,7 @@ namespace Google.ProtocolBuffers.ProtoGen
writer.WriteLine();
writer.WriteLine(
- "public pb::IMessageLite CallMethod(string methodName, pb::CodedInputStream input, pb::ExtensionRegistry registry) {{",
+ "public pb::IMessageLite CallMethod(string methodName, pb::ICodedInputStream input, pb::ExtensionRegistry registry) {{",
Descriptor.Name);
writer.Indent();
writer.WriteLine("switch(methodName) {");