View | Details | Raw Unified | Return to bug 52618
Collapse All | Expand All

(-)src/core/org/apache/jmeter/control/GenericController.java (-3 / +5 lines)
Lines 383-391 Link Here
383
383
384
    protected void fireIterationStart() {
384
    protected void fireIterationStart() {
385
        LoopIterationEvent event = new LoopIterationEvent(this, getIterCount());
385
        LoopIterationEvent event = new LoopIterationEvent(this, getIterCount());
386
        for (LoopIterationListener item : iterationListeners) {
386
        if (!getThreadContext().isReinitializingSubControllers()) {            
387
            item.iterationStart(event);
387
            for (LoopIterationListener item : iterationListeners) {
388
        }
388
                item.iterationStart(event);
389
            }
390
        } 
389
    }
391
    }
390
392
391
    protected int getIterCount() {
393
    protected int getIterCount() {

Return to bug 52618