summaryrefslogtreecommitdiff
path: root/extensions/qa/complex
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-05 15:29:21 +0200
committerNoel Grandin <noel@peralex.com>2014-08-08 09:48:20 +0200
commit616b3ad50404f35d84708b3feeb8c66f2f23f1b1 (patch)
treefbff023a34b3cc62b2c5beb592b95e65ce28251b /extensions/qa/complex
parentb6a83e99c8f4442c3c96198ac816dcb99419a67e (diff)
java: remove exceptions from throws clauses that are not
.. actually thrown Change-Id: Ia326ac7f82e11b948ed0f34e20908a96e7adcd10
Diffstat (limited to 'extensions/qa/complex')
-rw-r--r--extensions/qa/complex/extensions/OfficeResourceLoader.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/qa/complex/extensions/OfficeResourceLoader.java b/extensions/qa/complex/extensions/OfficeResourceLoader.java
index cbc57f2fc739..0c2c02cb9011 100644
--- a/extensions/qa/complex/extensions/OfficeResourceLoader.java
+++ b/extensions/qa/complex/extensions/OfficeResourceLoader.java
@@ -54,7 +54,7 @@ public class OfficeResourceLoader
}
/* ------------------------------------------------------------------ */
- @After public void after() throws com.sun.star.uno.Exception, java.lang.Exception
+ @After public void after() throws java.lang.Exception
{
}
@@ -94,7 +94,7 @@ public class OfficeResourceLoader
}
/* ------------------------------------------------------------------ */
- @Test public void checkLocales() throws com.sun.star.uno.Exception, java.lang.Exception
+ @Test public void checkLocales() throws java.lang.Exception
{
// en-US bundle (should always be built and thus present and thus found)
m_bundle = m_loader.loadBundle( "orl", new Locale( "en", "US", "" ) );