summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/convwatch
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-12-11 08:10:33 +0200
committerNoel Grandin <noelgrandin@gmail.com>2014-12-11 08:00:52 +0000
commit373affe59c9646d65c744ff7e3ed00425ccf9eb8 (patch)
tree99f9ae8845d08b2760aff0bf4c6751114f86abca /qadevOOo/runner/convwatch
parent3dee6c74c37d1667c1d56767896e9578e2836e29 (diff)
java: remove some unnecessary interfaces
Change-Id: Ie2da7cbbd1733881ff2da6fa095c37c21cf19fe8 Reviewed-on: https://gerrit.libreoffice.org/13435 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'qadevOOo/runner/convwatch')
-rw-r--r--qadevOOo/runner/convwatch/FilenameHelper.java25
1 files changed, 6 insertions, 19 deletions
diff --git a/qadevOOo/runner/convwatch/FilenameHelper.java b/qadevOOo/runner/convwatch/FilenameHelper.java
index 56a3b5dda65a..ffe462209520 100644
--- a/qadevOOo/runner/convwatch/FilenameHelper.java
+++ b/qadevOOo/runner/convwatch/FilenameHelper.java
@@ -16,30 +16,17 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-/**
- * Helper class to hold a Filename or a FileURL
- * Something like File in Java,
- * with some more extensions direct to ConvWatch and its name conventions
- *
- *
- */
package convwatch;
import helper.URLHelper;
import helper.StringHelper;
-interface Filenamer
-{
- String getSuffix();
- String getFileURL();
- String getAbsoluteSystemFilename();
- String getFilename();
- String getSystemPath();
-}
-
-
-
-abstract class FilenameHelper_impl implements Filenamer
+/**
+ * Helper class to hold a Filename or a FileURL
+ * Something like File in Java,
+ * with some more extensions direct to ConvWatch and its name conventions
+ */
+abstract class FilenameHelper_impl
{
private String fs; // file separator like '/'
private String m_sPath;