summaryrefslogtreecommitdiffstats
path: root/reportbuilder/java/org/libreoffice/report/ImageService.java
diff options
context:
space:
mode:
Diffstat (limited to 'reportbuilder/java/org/libreoffice/report/ImageService.java')
-rw-r--r--reportbuilder/java/org/libreoffice/report/ImageService.java7
1 files changed, 2 insertions, 5 deletions
diff --git a/reportbuilder/java/org/libreoffice/report/ImageService.java b/reportbuilder/java/org/libreoffice/report/ImageService.java
index 4089a0c42b65..91037841d416 100644
--- a/reportbuilder/java/org/libreoffice/report/ImageService.java
+++ b/reportbuilder/java/org/libreoffice/report/ImageService.java
@@ -27,23 +27,20 @@ public interface ImageService
/**
* @param image
* @return the mime-type of the image as string.
- * @throws ReportExecutionException
*/
String getMimeType(final InputStream image) throws ReportExecutionException;
/**
* @param image
* @return the mime-type of the image as string.
- * @throws ReportExecutionException
*/
String getMimeType(final byte[] image) throws ReportExecutionException;
/**
* @param image
* @returns the dimension in 100th mm.
- *
* @throws ReportExecutionException
- * @return*/
+ **/
Size getImageSize(final InputStream image) throws ReportExecutionException;
/**
@@ -51,7 +48,7 @@ public interface ImageService
* @returns the dimension in 100th mm.
*
* @throws ReportExecutionException
- * @return*/
+ **/
Size getImageSize(final byte[] image) throws ReportExecutionException;
}