Skip to content

Commit

Permalink
remove stacktrace
Browse files Browse the repository at this point in the history
  • Loading branch information
nicol authored and nicol committed Jan 1, 2024
1 parent b4e5296 commit 1e1e953
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/main/java/org/magic/gui/components/GedPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ protected Void doInBackground() throws Exception {
for(var snap : img)
{
var f = FileTools.createTempFile("picture",".png");
logger.info("creating temp file {}",f.getAbsolutePath());
ImageTools.saveImageInPng(snap,f);
publish(f);
}
Expand All @@ -131,7 +130,6 @@ protected void done() {
Thread.currentThread().interrupt();
logger.error(e);
} catch (ExecutionException e) {
e.printStackTrace();
logger.error(e);
}

Expand Down

0 comments on commit 1e1e953

Please sign in to comment.