summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-05 12:15:21 +0200
committerNoel Grandin <noel@peralex.com>2014-08-08 09:48:18 +0200
commitb58c053fed3c7e2e1e6a4195254e639976a3a809 (patch)
tree9a7b7f6ed06ee9dc53b6b501112a1fe520e4fccb /ucb
parentd07539ea5e7c2d99e9cc58a00726ecebe56cf018 (diff)
java: remove unnecessary semi-colons
Change-Id: Ibeeefc6e6ee8f7bed97a02f569f239ff035d38c4
Diffstat (limited to 'ucb')
-rw-r--r--ucb/qa/complex/tdoc/_XComponent.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/ucb/qa/complex/tdoc/_XComponent.java b/ucb/qa/complex/tdoc/_XComponent.java
index b51f3dadbc5c..50f5747bbc7f 100644
--- a/ucb/qa/complex/tdoc/_XComponent.java
+++ b/ucb/qa/complex/tdoc/_XComponent.java
@@ -52,7 +52,7 @@ public class _XComponent {
Loutput[0] = Thread.currentThread() + " is DISPOSING EV1" + this;
listenerDisposed[0] = true;
}
- };
+ }
/**
* Listener which added and then removed, and its method must <b>not</b>
@@ -63,7 +63,7 @@ public class _XComponent {
Loutput[0] = Thread.currentThread() + " is DISPOSING EV2" + this;
listenerDisposed[1] = true;
}
- };
+ }
XEventListener listener1 = new MyEventListener();
XEventListener listener2 = new MyEventListener2();