Fixed spacing

committer: Arnold Zokas <arnold.zokas@coderoom.net>
pull/288/head
Jon Skeet 14 years ago
parent 71f203a1a0
commit be4b86aeae
  1. 10
      src/ProtocolBuffers/CodedInputStream.cs

@ -113,14 +113,14 @@ namespace Google.ProtocolBuffers {
/// byte array slice. /// byte array slice.
/// </summary> /// </summary>
public static CodedInputStream CreateInstance(byte[] buf, int offset, int length) { 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) { private CodedInputStream(byte[] buffer, int offset, int length) {
this.buffer = buffer; this.buffer = buffer;
this.bufferPos = offset; this.bufferPos = offset;
this.bufferSize = offset + length; this.bufferSize = offset + length;
this.input = null; this.input = null;
} }
private CodedInputStream(Stream input) { private CodedInputStream(Stream input) {

Loading…
Cancel
Save