Browse Source

Fixed spacing

Jon Skeet 15 năm trước cách đây
mục cha
commit
f18a5b09ac
1 tập tin đã thay đổi với 5 bổ sung5 xóa
  1. 5 5
      src/ProtocolBuffers/CodedInputStream.cs

+ 5 - 5
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) {