git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@454760
13f79535-47bb-0310-9956-
ffa450edef68
this.setValid(true);
this.setPrimarySession(false);
this.access();
- if (cm.isNotifyListenersOnReplication()) this.setId(getIdInternal());
this.resetDeltaRequest();
this.endAccess();
}
* The new session identifier
*/
public void setIdInternal(String id) {
- super.setId(id);
+ this.id = id;
resetDeltaRequest();
}
* The new session identifier
*/
public void setId(String id) {
- setIdInternal(id);
+ super.setId(id);
+ resetDeltaRequest();
}