提交 b52ac445 authored 作者: noelgrandin's avatar noelgrandin

no function change, just move the identify methods to be all next to each other

上级 df4a5180
...@@ -715,6 +715,14 @@ public class Session extends SessionWithState { ...@@ -715,6 +715,14 @@ public class Session extends SessionWithState {
return lastIdentity; return lastIdentity;
} }
public void setScopeIdentity(Value scopeIdentity) {
this.scopeIdentity = scopeIdentity;
}
public Value getScopeIdentity() {
return scopeIdentity;
}
/** /**
* Called when a log entry for this session is added. The session keeps * Called when a log entry for this session is added. The session keeps
* track of the first entry in the transaction log that is not yet committed. * track of the first entry in the transaction log that is not yet committed.
...@@ -1220,14 +1228,6 @@ public class Session extends SessionWithState { ...@@ -1220,14 +1228,6 @@ public class Session extends SessionWithState {
return objectId++; return objectId++;
} }
public void setScopeIdentity(Value scopeIdentity) {
this.scopeIdentity = scopeIdentity;
}
public Value getScopeIdentity() {
return scopeIdentity;
}
public boolean isRedoLogBinaryEnabled() { public boolean isRedoLogBinaryEnabled() {
return redoLogBinary; return redoLogBinary;
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论