| Index: lib/src/particle/stack_queue.dart
|
| diff --git a/lib/src/particle/stack_queue.dart b/lib/src/particle/stack_queue.dart
|
| index a7c8b8486986113b509f303d2fc2fbc775a3e66c..6d24862908a07b43afc7e237897719e021c05af8 100644
|
| --- a/lib/src/particle/stack_queue.dart
|
| +++ b/lib/src/particle/stack_queue.dart
|
| @@ -41,8 +41,7 @@ class StackQueue<T> {
|
|
|
| void push(T task) {
|
| if (_back >= _end) {
|
| - BufferUtils.arraycopy(
|
| - _buffer, _front, _buffer, 0, _back - _front);
|
| + BufferUtils.arraycopy(_buffer, _front, _buffer, 0, _back - _front);
|
| _back -= _front;
|
| _front = 0;
|
| if (_back >= _end) {
|
|
|