Skip to content

Commit

Permalink
fix: del gmt modify time in session
Browse files Browse the repository at this point in the history
  • Loading branch information
xjlgod committed Dec 30, 2024
1 parent b193065 commit 74d1f67
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,6 @@ private static GlobalSession mockGlobalSession() {
session.setApplicationData("hello, world");
session.setTransactionId(txId);
session.setBeginTime(System.currentTimeMillis());
session.setGmtModified(System.currentTimeMillis());
return session;
}

Expand All @@ -147,7 +146,6 @@ private static BranchSession mockBranchSession(String xid,long transactionId) {
session.setLockKey("test");
session.setBranchType(BranchType.AT);
session.setApplicationData("hello, world");
session.setGmtModified(System.currentTimeMillis());
return session;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ private static GlobalSession mockGlobalSession() {
session.setApplicationData("hello, world");
session.setTransactionId(123);
session.setBeginTime(System.currentTimeMillis());
session.setGmtModified(System.currentTimeMillis());
return session;
}

Expand Down

0 comments on commit 74d1f67

Please sign in to comment.