Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
rtmigo committed Mar 16, 2024
1 parent f1100a8 commit 34f012b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.0.2

- Minor fixes

# 1.0.1

- Added `ParallelScheduler`
Expand Down
5 changes: 2 additions & 3 deletions lib/src/b_base.dart
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,8 @@ class PriorityTask<R> extends InternalTask<R>
implements Comparable<PriorityTask<R>> {
static Unlimited _idGenerator = Unlimited();

PriorityTask(final GetterFunc<R> callback, this.priority,
{final CancelFunc? onCancel})
: super(callback, onCancel: onCancel);
PriorityTask(super.callback, this.priority,
{super.onCancel});

final int priority;
final id = (PriorityTask._idGenerator = PriorityTask._idGenerator.next());
Expand Down

0 comments on commit 34f012b

Please sign in to comment.