src/core/src/main/java/org/apache/jmeter/threads/AbstractThreadGroup.java [168:176]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public final boolean addTestElementOnce(TestElement child){
        synchronized (children) {
            if (children.putIfAbsent(child, DUMMY) == null) {
                addTestElement(child);
                return true;
            }
        }
        return false;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/core/src/main/java/org/apache/jmeter/control/GenericController.java [367:375]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public final boolean addTestElementOnce(TestElement child){
        synchronized (children) {
            if (children.putIfAbsent(child, DUMMY) == null) {
                addTestElement(child);
                return true;
            }
        }
        return false;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



