Skip to content

Commit d14b90f

Browse files
committed
Simplifies even more ProcessAsync
1 parent 419685d commit d14b90f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Exceptionless/Queue/DefaultEventQueue.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public void Enqueue(Event ev) {
4646
}
4747

4848
public Task ProcessAsync() {
49-
return Task.Run(() => Process());
49+
return Task.Run(Process);
5050
}
5151

5252
public Task Process() {

0 commit comments

Comments
 (0)