sebb 2004/02/18 15:30:50
Modified: src/protocol/http/org/apache/jmeter/protocol/http/sampler
AccessLogSampler.java
Log:
Make non-serialisable fields transient
Revision Changes Path
1.7 +5 -5
jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/sampler/AccessLogSampler.java
Index: AccessLogSampler.java
===================================================================
RCS file:
/home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/sampler/AccessLogSampler.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- AccessLogSampler.java 12 Feb 2004 00:29:49 -0000 1.6
+++ AccessLogSampler.java 18 Feb 2004 23:30:50 -0000 1.7
@@ -76,9 +76,9 @@
public static final String GENERATOR_CLASS_NAME =
"AccessLogSampler.generator_class_name";
/** private members used by class **/
- private Generator GENERATOR = null;
- private LogParser PARSER = null;
- private LogFilter FILTER = null; //TODO not used
+ transient private Generator GENERATOR = null;
+ transient private LogParser PARSER = null;
+ //transient private LogFilter FILTER = null; //TODO not used
private Class GENERATORCLASS = null;
private Class PARSERCLASS = null;
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]