Skip to content

Commit 93885de

Browse files
committed
Remove incorrect comment
1 parent 66068fc commit 93885de

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

  • crates/bindings-csharp/Runtime/Internal

crates/bindings-csharp/Runtime/Internal/ITable.cs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,11 @@ public bool MoveNext()
2323
{
2424
return false;
2525
}
26-
27-
int bufferLen;
28-
// This loop makes no sense and should be unnecessary.
29-
// I (Lisandro 2026-07-09) am leaving the loop here because it's probably a similar case to the one in
30-
// `Runtime/Internal/Module.cs#Consume` and in the future might become useful again.
26+
3127
while (true)
3228
{
3329
var requestedLen = buffer.Length;
34-
bufferLen = requestedLen;
30+
var bufferLen = requestedLen;
3531
var ret = FFI.row_iter_bsatn_advance(handle, buffer, ref bufferLen);
3632
if (ret == Errno.EXHAUSTED)
3733
{

0 commit comments

Comments
 (0)