diff options
Diffstat (limited to 'src/junit/com/jogamp/test/junit/util/AWTRobotUtil.java')
-rw-r--r-- | src/junit/com/jogamp/test/junit/util/AWTRobotUtil.java | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/junit/com/jogamp/test/junit/util/AWTRobotUtil.java b/src/junit/com/jogamp/test/junit/util/AWTRobotUtil.java index fd3d690e3..5240178a7 100644 --- a/src/junit/com/jogamp/test/junit/util/AWTRobotUtil.java +++ b/src/junit/com/jogamp/test/junit/util/AWTRobotUtil.java @@ -44,14 +44,6 @@ public class AWTRobotUtil { public static int TIME_OUT = 1000; // 1s - public static final String SINGLE_INSTANCE_LOCK_FILE = "AWTRobotUtil.lock"; - - public static SingletonInstance lock() { - SingletonInstance si = new SingletonInstance(SINGLE_INSTANCE_LOCK_FILE); - si.lock(3*60*1000, 500); // wait up to 3 min, poll every 500ms - return si; - } - /** * toFront, call setVisible(true) and toFront(), * after positioning the mouse in the middle of the window via robot. @@ -187,7 +179,7 @@ public class AWTRobotUtil { * @param keyTypedCounter shall return the number of keys typed (press + release) * @return True if the object received 2 keys within TIME_OUT */ - public static boolean testKeyInput(Robot robot, TestEventCountAdapter keyTypedCounter) + public static boolean testKeyInput(Robot robot, EventCountAdapter keyTypedCounter) throws AWTException, InterruptedException, InvocationTargetException { Component comp = null; com.jogamp.newt.Window win = null; |