diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-08 13:31:17 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-08-13 09:44:17 +0200 |
commit | d01a7e744016a1f28ccb4376dcc6db16e6fc18d9 (patch) | |
tree | 0e8a1c3b1734da97cfffbea6552f11d46681a934 /wizards | |
parent | 4155c28ae1700e853d598077a08a6ba6c1a94e06 (diff) |
java: remove unused member class
found by UCDetector
Change-Id: Id02478d3d151bd01cea50aeb454c02c2bc4d1baf
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/com/sun/star/wizards/common/Desktop.java | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/wizards/com/sun/star/wizards/common/Desktop.java b/wizards/com/sun/star/wizards/common/Desktop.java index fc6d15866b87..ad0e161291c9 100644 --- a/wizards/com/sun/star/wizards/common/Desktop.java +++ b/wizards/com/sun/star/wizards/common/Desktop.java @@ -327,32 +327,6 @@ public class Desktop } } - /** - * @deprecated used to retrieve the most common paths used in the office application - */ - public class OfficePathRetriever - { - - public String TemplatePath; - public String BitmapPath; - public String UserTemplatePath; - public String WorkPath; - - public OfficePathRetriever(XMultiServiceFactory xMSF) - { - try - { - TemplatePath = FileAccess.getOfficePath(xMSF, "Template", "share", "/wizard"); - UserTemplatePath = FileAccess.getOfficePath(xMSF, "Template", "user", PropertyNames.EMPTY_STRING); - BitmapPath = FileAccess.combinePaths(xMSF, TemplatePath, "/../wizard/bitmap"); - WorkPath = FileAccess.getOfficePath(xMSF, "Work", PropertyNames.EMPTY_STRING, PropertyNames.EMPTY_STRING); - } - catch (NoValidPathException nopathexception) - { - } - } - } - private static String getTemplatePath(XMultiServiceFactory _xMSF) { try |