--- old/tools/Jemmy/JemmyFX/src/org/jemmy/fx/WindowList.java 2016-12-09 13:28:24.278872919 +0300 +++ new/tools/Jemmy/JemmyFX/src/org/jemmy/fx/WindowList.java 2016-12-09 13:28:24.222872416 +0300 @@ -47,10 +47,7 @@ @Override public void run(Object... parameters) { LinkedList res = new LinkedList(); - Iterator windows = Window.impl_getWindows(); - while(windows.hasNext()) { - res.add(windows.next()); - } + res.addAll(Window.getWindows()); setResult(res); } };