aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJon Skeet <skeet@pobox.com>2010-11-23 05:47:50 +0800
committerJon Skeet <skeet@pobox.com>2010-11-23 05:47:50 +0800
commitbe4b86aeae26ef068ff7dc9df880e81dc28dab1c (patch)
treeb9c059374702d28fba181890f9c7fb1489b904b9 /src
parent71f203a1a0dc249a5dd241603192495badaca212 (diff)
downloadprotobuf-be4b86aeae26ef068ff7dc9df880e81dc28dab1c.tar.gz
protobuf-be4b86aeae26ef068ff7dc9df880e81dc28dab1c.tar.bz2
protobuf-be4b86aeae26ef068ff7dc9df880e81dc28dab1c.zip
Fixed spacing
committer: Arnold Zokas <arnold.zokas@coderoom.net>
Diffstat (limited to 'src')
-rw-r--r--src/ProtocolBuffers/CodedInputStream.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ProtocolBuffers/CodedInputStream.cs b/src/ProtocolBuffers/CodedInputStream.cs
index e20ad0bb..3306f309 100644
--- a/src/ProtocolBuffers/CodedInputStream.cs
+++ b/src/ProtocolBuffers/CodedInputStream.cs
@@ -113,14 +113,14 @@ namespace Google.ProtocolBuffers {
/// byte array slice.
/// </summary>
public static CodedInputStream CreateInstance(byte[] buf, int offset, int length) {
- return new CodedInputStream(buf, offset, length);
+ return new CodedInputStream(buf, offset, length);
}
private CodedInputStream(byte[] buffer, int offset, int length) {
- this.buffer = buffer;
- this.bufferPos = offset;
- this.bufferSize = offset + length;
- this.input = null;
+ this.buffer = buffer;
+ this.bufferPos = offset;
+ this.bufferSize = offset + length;
+ this.input = null;
}
private CodedInputStream(Stream input) {