~james-page/ubuntu/natty/tomcat6/fix-662588

« back to all changes in this revision

Viewing changes to java/org/apache/catalina/session/StandardSession.java

  • Committer: Bazaar Package Importer
  • Author(s): Mathias Gug, Iulian Udrea
  • Date: 2009-06-09 12:35:19 UTC
  • mfrom: (1.2.1 upstream) (2.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20090609123519-7owjbso5ttnka6ur
Tags: 6.0.20-1ubuntu1
[ Iulian Udrea ]
* Merge from debian unstable (LP: #385262), remaining changes:
  - debian/control, debian/rules: Use default-jdk to build
  - debian/control: Run using default-jre-headless by default

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
 * @author Craig R. McClanahan
78
78
 * @author Sean Legassick
79
79
 * @author <a href="mailto:jon@latchkey.com">Jon S. Stevens</a>
80
 
 * @version $Revision: 672012 $ $Date: 2008-06-26 21:48:30 +0200 (Thu, 26 Jun 2008) $
 
80
 * @version $Revision: 711589 $ $Date: 2008-11-05 16:41:03 +0100 (Wed, 05 Nov 2008) $
81
81
 */
82
82
 
83
83
public class StandardSession
204
204
    /**
205
205
     * The last accessed time for this Session.
206
206
     */
207
 
    protected long lastAccessedTime = creationTime;
 
207
    protected volatile long lastAccessedTime = creationTime;
208
208
 
209
209
 
210
210
    /**
279
279
    /**
280
280
     * The current accessed time for this session.
281
281
     */
282
 
    protected long thisAccessedTime = creationTime;
 
282
    protected volatile long thisAccessedTime = creationTime;
283
283
 
284
284
 
285
285
    /**