Skip to content

Commit

Permalink
Fix this properly lttr
Browse files Browse the repository at this point in the history
  • Loading branch information
Tripleo committed Sep 15, 2024
1 parent 01e94ec commit 5c2be28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/tripleo/elijah/work/WorkManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class WorkManager {
private final List<WorkList> jobs = new ArrayList<>();
private final Set<WorkJob> doneJobs = new HashSet<>();

private static Eventloop createEventloop() {
public static Eventloop createEventloop() {
//noinspection UnnecessaryLocalVariable
Eventloop eventLoop = Eventloop.builder()
.withCurrentThread()
Expand Down
1 change: 1 addition & 0 deletions src/test/java/tripleo/elijah/work/WorkManagerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public void testWorkManager() {
final List<String> sink = new ArrayList<>();

final WorkManager workManager = new WorkManager();
workManager.createEventloop();

final WorkList wl = new WorkList();
wl.addJob(new AppendChar("A", 0, sink));
Expand Down

0 comments on commit 5c2be28

Please sign in to comment.