--- old/core/JemmyCore/src/org/jemmy/input/WindowImpl.java 2018-05-20 10:11:56.031966481 +0200 +++ new/core/JemmyCore/src/org/jemmy/input/WindowImpl.java 2018-05-20 10:11:55.975964772 +0200 @@ -39,31 +39,17 @@ private Wrap control; private int offset; - /** - * - * @param control - * @param offset - */ public WindowImpl(Wrap control, int offset) { this.control = control; this.offset = offset; } - /** - * - * @param dest - */ public void move(Point dest) { Point start = control.getClickPoint(); Point target = new Point(start.x + dest.x, start.y + dest.y); control.drag().dnd(start, control, target); } - /** - * - * @param size - * @param direction - */ public void resize(Dimension size, Direction direction) { Point start = null, target = null; Dimension sizeDiff = new Dimension(size.width - control.getScreenBounds().width, size.height - control.getScreenBounds().height);