@@ -, +, @@ --- .../jmeter/protocol/http/sampler/HTTPAbstractImpl.java | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) --- a/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPAbstractImpl.java +++ a/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPAbstractImpl.java @@ -47,15 +47,9 @@ import org.apache.jmeter.util.JMeterUtils; */ public abstract class HTTPAbstractImpl implements Interruptible, HTTPConstantsInterface { private static enum CachedResourceMode { - RETURN_200_CACHE("RETURN_200_CACHE"), - RETURN_NO_SAMPLE("RETURN_NO_SAMPLE"), - RETURN_CUSTOM_STATUS("RETURN_CUSTOM_STATUS"); - - private String name; - - CachedResourceMode(String name) { - this.name = name; - } + RETURN_NO_SAMPLE(), + RETURN_200_CACHE(), + RETURN_CUSTOM_STATUS(); } /** --