diff options
author | Noel Grandin <noel@peralex.com> | 2014-12-17 10:48:31 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-12-19 10:41:54 +0200 |
commit | cba3956750eebc4a5e2c8f8c7cb48764df18b3cb (patch) | |
tree | de2bf63f06b078d5f0d63da9763192d6795812e7 /qadevOOo | |
parent | e92d3e90075573a374bfc39449c0e74f518890ba (diff) |
java: this does not need to be a Thread
It is just being used as a Runnable
Change-Id: I1e652ab0f3b0450d3a85384b9dd513419e2f8046
Diffstat (limited to 'qadevOOo')
-rw-r--r-- | qadevOOo/tests/java/ifc/awt/_XUserInputInterception.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/qadevOOo/tests/java/ifc/awt/_XUserInputInterception.java b/qadevOOo/tests/java/ifc/awt/_XUserInputInterception.java index 976c8f430351..557abd569634 100644 --- a/qadevOOo/tests/java/ifc/awt/_XUserInputInterception.java +++ b/qadevOOo/tests/java/ifc/awt/_XUserInputInterception.java @@ -395,7 +395,7 @@ public class _XUserInputInterception extends MultiMethodTest { * press a key with the <CODE>Robot</CODE> class * @see java.awt.Robot */ - private class EventTrigger extends Thread{ + private class EventTrigger implements Runnable { /** * represents an <CODE>EventType</CODE> @@ -434,7 +434,6 @@ public class _XUserInputInterception extends MultiMethodTest { * </LI> * </UL> */ - @Override public void run(){ switch (this.eventType){ |