--- old/core/JemmyCore/src/org/jemmy/lookup/ParentImpl.java 2018-05-20 10:12:04.334219838 +0200 +++ new/core/JemmyCore/src/org/jemmy/lookup/ParentImpl.java 2018-05-20 10:12:04.281218221 +0200 @@ -31,8 +31,6 @@ import org.jemmy.interfaces.Parent; /** - * - * @param * @author shura */ public class ParentImpl extends AbstractParent { @@ -43,22 +41,10 @@ private Environment env; private Wrapper wrapper; - /** - * - * @param env - * @param type - * @param ch - */ public ParentImpl(Environment env, Class type, ControlHierarchy ch) { this(env, type, ch, Wrap.getWrapper()); } - /** - * - * @param env - * @param type - * @param ch - * @param wrapper - */ + public ParentImpl(Environment env, Class type, ControlHierarchy ch, Wrapper wrapper) { this.type = type; this.ch = ch; @@ -66,22 +52,10 @@ this.wrapper = wrapper; } - /** - * - * @param env - * @param type - * @param cl - */ public ParentImpl(Environment env, Class type, ControlList cl) { this(env, type, cl, Wrap.getWrapper()); } - /** - * - * @param env - * @param type - * @param cl - * @param wrapper - */ + public ParentImpl(Environment env, Class type, ControlList cl, Wrapper wrapper) { this.type = type; this.cl = cl;