diff options
Diffstat (limited to 'qadevOOo/runner/util')
-rw-r--r-- | qadevOOo/runner/util/BasicMacroTools.java | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/qadevOOo/runner/util/BasicMacroTools.java b/qadevOOo/runner/util/BasicMacroTools.java index 0a2a856f774f..ead35dd78b40 100644 --- a/qadevOOo/runner/util/BasicMacroTools.java +++ b/qadevOOo/runner/util/BasicMacroTools.java @@ -109,14 +109,9 @@ public class BasicMacroTools { private static XURLTransformer makeParser(XMultiServiceFactory mMSF) throws java.lang.Exception { - try { - return UnoRuntime.queryInterface( - XURLTransformer.class, mMSF.createInstance( - "com.sun.star.util.URLTransformer")); - } catch (Exception e) { - throw new Exception("could not create UTL-Transformer " + - e.toString()); - } + return UnoRuntime.queryInterface( + XURLTransformer.class, mMSF.createInstance( + "com.sun.star.util.URLTransformer")); } public void loadLibrary(String LibraryName, String LibraryURL) |