From 616b3ad50404f35d84708b3feeb8c66f2f23f1b1 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 5 Aug 2014 15:29:21 +0200 Subject: java: remove exceptions from throws clauses that are not .. actually thrown Change-Id: Ia326ac7f82e11b948ed0f34e20908a96e7adcd10 --- extensions/qa/complex/extensions/OfficeResourceLoader.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'extensions/qa/complex') 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", "" ) ); -- cgit