--- old/tools/Jemmy/JemmyFX/src/org/jemmy/fx/WindowList.java 2016-12-22 11:26:47.721255634 +0300 +++ new/tools/Jemmy/JemmyFX/src/org/jemmy/fx/WindowList.java 2016-12-22 11:26:47.669255133 +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); } };