diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-13 17:05:54 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-08-20 11:45:28 +0200 |
commit | 8c9fdc4a963fd55da59a93c979071f53b84fbc24 (patch) | |
tree | e913f69cee6ec9e3e2072f73d58088ae74d2260d /reportbuilder | |
parent | 34352e7f1b0fe55da4d1d43921674344ae6deafc (diff) |
java: remove modifiers implied by the context
found by PMD
Change-Id: I04cbf986ddbcffff987784f381b8a9f52f1b3f31
Diffstat (limited to 'reportbuilder')
-rw-r--r-- | reportbuilder/java/org/libreoffice/report/DataSourceFactory.java | 2 | ||||
-rw-r--r-- | reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/OfficeRepeatingStructureLayoutController.java | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/reportbuilder/java/org/libreoffice/report/DataSourceFactory.java b/reportbuilder/java/org/libreoffice/report/DataSourceFactory.java index 9987a6a963e2..9f0eee8df677 100644 --- a/reportbuilder/java/org/libreoffice/report/DataSourceFactory.java +++ b/reportbuilder/java/org/libreoffice/report/DataSourceFactory.java @@ -28,6 +28,6 @@ import java.util.Map; public interface DataSourceFactory { - public DataSource queryData(String name, Map<String,Object> parameters) + DataSource queryData(String name, Map<String,Object> parameters) throws DataSourceException; } diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/OfficeRepeatingStructureLayoutController.java b/reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/OfficeRepeatingStructureLayoutController.java index a07aaf9a2b5c..2ca47ca2c1d1 100644 --- a/reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/OfficeRepeatingStructureLayoutController.java +++ b/reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/OfficeRepeatingStructureLayoutController.java @@ -28,7 +28,7 @@ import org.jfree.report.flow.layoutprocessor.LayoutController; public interface OfficeRepeatingStructureLayoutController extends LayoutController { - public boolean isNormalFlowProcessing(); + boolean isNormalFlowProcessing(); - public VariablesCollection getVariablesCollection(); + VariablesCollection getVariablesCollection(); } |