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

(-)C:/Documents and Settings/ecerulm/workspace32jmeter/JMeter2_2/src/components/org/apache/jmeter/modifiers/CounterConfig.java (-1 / +5 lines)
Lines 116-122 Link Here
116
	}
116
	}
117
117
118
	public long getEnd() {
118
	public long getEnd() {
119
		return getPropertyAsLong(END);
119
		long propertyAsLong = getPropertyAsLong(END);
120
		if (propertyAsLong == 0 && "".equals(getProperty(END).getStringValue())) {
121
			propertyAsLong = Long.MAX_VALUE;
122
		}
123
		return propertyAsLong;
120
	}
124
	}
121
125
122
	public void setIncrement(long inc) {
126
	public void setIncrement(long inc) {

Return to bug 40804