From cba3956750eebc4a5e2c8f8c7cb48764df18b3cb Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 17 Dec 2014 10:48:31 +0200 Subject: java: this does not need to be a Thread It is just being used as a Runnable Change-Id: I1e652ab0f3b0450d3a85384b9dd513419e2f8046 --- qadevOOo/tests/java/ifc/awt/_XUserInputInterception.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'qadevOOo/tests/java/ifc/awt') 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 Robot class * @see java.awt.Robot */ - private class EventTrigger extends Thread{ + private class EventTrigger implements Runnable { /** * represents an EventType @@ -434,7 +434,6 @@ public class _XUserInputInterception extends MultiMethodTest { * * */ - @Override public void run(){ switch (this.eventType){ -- cgit