Skip to content

Commit

Permalink
Hopefully fix NotImplementedException
Browse files Browse the repository at this point in the history
  • Loading branch information
Rakambda committed Sep 30, 2023
1 parent 4a4f0c4 commit b892fbb
Show file tree
Hide file tree
Showing 3 changed files with 202 additions and 188 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ protected void convert(@NonNull ExecutorService executorService) throws Exceptio
progressBar = converterProgressBarSupplier.get();

ProcessBuilder builder = new ProcessBuilder(getCommand());
executorService.execute(() -> {
executorService.submit(() -> {
try{
progressBar.getProgressBar().stepTo(0);
progressBar.getProgressBar().setExtraMessage(getOutput().getFileName().toString());
Expand Down
Loading

0 comments on commit b892fbb

Please sign in to comment.