diff options
author | Noel Grandin <noel@peralex.com> | 2012-08-21 08:35:58 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-08-28 16:15:42 +0200 |
commit | 2caf5d19376f211bce78c9ecf040fa686201befc (patch) | |
tree | 3f6cc30fce207a1977871ebb2d4f61a2daa3704e /jurt | |
parent | e09953e84ac69348cedb6d1324ad40a7c86dcac5 (diff) |
Java cleanup - remove unnecessary semi-colons
Change-Id: I20a79d3d8f71dc48fc2662563f9c890dd3d94aac
Diffstat (limited to 'jurt')
-rw-r--r-- | jurt/test/com/sun/star/lib/uno/environments/remote/ThreadPool_Test.java | 2 | ||||
-rw-r--r-- | jurt/test/com/sun/star/uno/AnyConverter_Test.java | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/jurt/test/com/sun/star/lib/uno/environments/remote/ThreadPool_Test.java b/jurt/test/com/sun/star/lib/uno/environments/remote/ThreadPool_Test.java index 8be06b078dac..43323bc1dc72 100644 --- a/jurt/test/com/sun/star/lib/uno/environments/remote/ThreadPool_Test.java +++ b/jurt/test/com/sun/star/lib/uno/environments/remote/ThreadPool_Test.java @@ -246,7 +246,7 @@ public class ThreadPool_Test { protected abstract void runTest() throws InterruptedException; private final int count; - }; + } Stress stress1 = new Stress(50) { protected void runTest() throws InterruptedException { diff --git a/jurt/test/com/sun/star/uno/AnyConverter_Test.java b/jurt/test/com/sun/star/uno/AnyConverter_Test.java index b4330e4d4932..9ff5633b7c31 100644 --- a/jurt/test/com/sun/star/uno/AnyConverter_Test.java +++ b/jurt/test/com/sun/star/uno/AnyConverter_Test.java @@ -578,7 +578,7 @@ public final class AnyConverter_Test { AnyConverter.toObject( new Type(com.sun.star.uno.RuntimeException.class), any_exc); fail(); - } catch (com.sun.star.lang.IllegalArgumentException ie) {}; + } catch (com.sun.star.lang.IllegalArgumentException ie) {} any_exc = new Any(com.sun.star.lang.IllegalArgumentException.class, exc); assertEquals( @@ -594,7 +594,7 @@ public final class AnyConverter_Test { AnyConverter.toObject( new Type(com.sun.star.uno.RuntimeException.class), any_exc); fail(); - } catch (com.sun.star.lang.IllegalArgumentException ie) {}; + } catch (com.sun.star.lang.IllegalArgumentException ie) {} // must fail try { AnyConverter.toObject(_type, aType); fail(); |