summaryrefslogtreecommitdiff
path: root/reportbuilder/java/com/sun/star/report/ImageService.java
diff options
context:
space:
mode:
Diffstat (limited to 'reportbuilder/java/com/sun/star/report/ImageService.java')
-rw-r--r--reportbuilder/java/com/sun/star/report/ImageService.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/reportbuilder/java/com/sun/star/report/ImageService.java b/reportbuilder/java/com/sun/star/report/ImageService.java
index e0b558933703..193b97d66d58 100644
--- a/reportbuilder/java/com/sun/star/report/ImageService.java
+++ b/reportbuilder/java/com/sun/star/report/ImageService.java
@@ -42,21 +42,21 @@ public interface ImageService
/**
* @return the mime-type of the image as string.
*/
- public String getMimeType(final InputStream image) throws ReportExecutionException;
+ String getMimeType(final InputStream image) throws ReportExecutionException;
/**
* @return the mime-type of the image as string.
*/
- public String getMimeType(final byte[] image) throws ReportExecutionException;
+ String getMimeType(final byte[] image) throws ReportExecutionException;
/**
* @returns the dimension in 100th mm.
**/
- public Dimension getImageSize(final InputStream image) throws ReportExecutionException;
+ Dimension getImageSize(final InputStream image) throws ReportExecutionException;
/**
* @returns the dimension in 100th mm.
**/
- public Dimension getImageSize(final byte[] image) throws ReportExecutionException;
+ Dimension getImageSize(final byte[] image) throws ReportExecutionException;
}