Skip to content

Commit

Permalink
remove print from lib
Browse files Browse the repository at this point in the history
  • Loading branch information
ra1u committed Apr 24, 2022
1 parent 6d22c6a commit 408552b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion lib/lazystream.dart
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ class StreamNext {
if (_nfut >= 1) {
_nfut = 0;
for (Completer<List<int>> e in _queue) {
print("complete error");
e.completeError(error);
}
}
Expand Down
2 changes: 0 additions & 2 deletions lib/transaction.dart
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,6 @@ class Transaction extends Command {
//return null;
} else {
if (list.length != _queue.length) {
print(
"list.length = ${list.length} _queue.length = ${_queue.length}");
int? diff = list.length - _queue.length;
//return
throw RedisRuntimeError(
Expand Down

0 comments on commit 408552b

Please sign in to comment.