diff options
| author | Benjamin Culkin <scorpress@gmail.com> | 2025-12-07 21:12:19 -0500 |
|---|---|---|
| committer | Benjamin Culkin <scorpress@gmail.com> | 2025-12-07 21:12:19 -0500 |
| commit | 75cb1cf85dacefce863cbacea57dff33ccf39e5f (patch) | |
| tree | 488c12bc52e500a5624030d9256fb86b57188618 /firmal/src/main/java/module-info.java | |
| parent | 3db23673591cb35a9626475a79cdd3474e6a7f06 (diff) | |
Part one of DB updates - Centralization
Part one of the DB updates - switching to using a centralized source
that uses a executor to parallelize.
I'd imagine the performance would be more arse than it already was if I
ran it now, which is why the next step is to change the save action to
use SwingWorker and be parallelized per conversation.
After that, set-up the UI for BatchTaskProgressPanel, and configure
those SwingWorkers to use it
Diffstat (limited to 'firmal/src/main/java/module-info.java')
| -rw-r--r-- | firmal/src/main/java/module-info.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmal/src/main/java/module-info.java b/firmal/src/main/java/module-info.java index 7c434fa..7719a71 100644 --- a/firmal/src/main/java/module-info.java +++ b/firmal/src/main/java/module-info.java @@ -7,7 +7,7 @@ module firmal { exports bjc.firmal; - requires bjc.utils; + requires transitive bjc.utils; requires esodata; requires transitive java.desktop; requires json; |
