aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJon Skeet <skeet@pobox.com>2010-10-26 19:45:03 +0100
committerJon Skeet <skeet@pobox.com>2010-10-26 19:45:03 +0100
commitf18a5b09ac622c50e1406860b5f1dffe8d762778 (patch)
tree0268b97e20401909526d5f298f1f55529cc3d873 /src
parentef234da0e314255e026f82e792640b8c6f7c8134 (diff)
downloadprotobuf-f18a5b09ac622c50e1406860b5f1dffe8d762778.tar.gz
protobuf-f18a5b09ac622c50e1406860b5f1dffe8d762778.tar.bz2
protobuf-f18a5b09ac622c50e1406860b5f1dffe8d762778.zip
Fixed spacing
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) {