From 02b032d0e5ef736799c258791880b78da194e012 Mon Sep 17 00:00:00 2001 From: Thomas Gutmann Date: Wed, 20 Mar 2024 21:37:05 +0100 Subject: [PATCH] Remove the error stack trace print (#1595) --- .../report/engine/nLayout/area/style/BackgroundImageInfo.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/nLayout/area/style/BackgroundImageInfo.java b/engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/nLayout/area/style/BackgroundImageInfo.java index 67ca68ace3..f7be46d453 100644 --- a/engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/nLayout/area/style/BackgroundImageInfo.java +++ b/engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/nLayout/area/style/BackgroundImageInfo.java @@ -758,7 +758,7 @@ private int[] getImageResolution(InputStream imageStream) { } } } catch (Exception e) { - e.printStackTrace(); + // the default of BGI_DPI_DEFAULT (96dpi) will be used } }