summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-12-17 10:48:31 +0200
committerNoel Grandin <noel@peralex.com>2014-12-19 10:41:54 +0200
commitcba3956750eebc4a5e2c8f8c7cb48764df18b3cb (patch)
treede2bf63f06b078d5f0d63da9763192d6795812e7 /framework
parente92d3e90075573a374bfc39449c0e74f518890ba (diff)
java: this does not need to be a Thread
It is just being used as a Runnable Change-Id: I1e652ab0f3b0450d3a85384b9dd513419e2f8046
Diffstat (limited to 'framework')
-rw-r--r--framework/qa/complex/XUserInputInterception/EventTest.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/framework/qa/complex/XUserInputInterception/EventTest.java b/framework/qa/complex/XUserInputInterception/EventTest.java
index 9737bbe7cc8a..e8462b4ee74d 100644
--- a/framework/qa/complex/XUserInputInterception/EventTest.java
+++ b/framework/qa/complex/XUserInputInterception/EventTest.java
@@ -400,7 +400,7 @@ public class EventTest {
* 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>
@@ -439,7 +439,6 @@ public class EventTest {
* </LI>
* </UL>
*/
- @Override
public void run(){
switch (this.eventType){