Skip to content

Commit 0d0ef77

Browse files
committed
Remove bad comments
1 parent 4c2c5b1 commit 0d0ef77

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

MLAPI.Tests/NetworkingManagerComponents/Binary/BitStreamTest.cs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -161,9 +161,6 @@ public void TestInOutBytes()
161161
BitStream outStream = new BitStream(buffer);
162162
outStream.WriteByte(someNumber);
163163

164-
165-
// the bit should now be stored in the buffer, lets see if it comes out
166-
167164
BitStream inStream = new BitStream(buffer);
168165
Assert.That(inStream.ReadByte(), Is.EqualTo(someNumber));
169166

@@ -182,9 +179,6 @@ public void TestInOutInt16()
182179
BitStream outStream = new BitStream(buffer);
183180
outStream.WriteInt16(someNumber);
184181

185-
186-
// the bit should now be stored in the buffer, lets see if it comes out
187-
188182
BitStream inStream = new BitStream(buffer);
189183
short result = inStream.ReadInt16();
190184

@@ -202,9 +196,6 @@ public void TestInOutInt32()
202196
BitStream outStream = new BitStream(buffer);
203197
outStream.WriteInt32(someNumber);
204198

205-
206-
// the bit should now be stored in the buffer, lets see if it comes out
207-
208199
BitStream inStream = new BitStream(buffer);
209200
int result = inStream.ReadInt32();
210201

@@ -222,8 +213,6 @@ public void TestInOutInt64()
222213
BitStream outStream = new BitStream(buffer);
223214
outStream.WriteInt64(someNumber);
224215

225-
// the bit should now be stored in the buffer, lets see if it comes out
226-
227216
BitStream inStream = new BitStream(buffer);
228217
long result = inStream.ReadInt64();
229218

0 commit comments

Comments
 (0)