mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Refactor TableModState to use nanoTime refactor (#1720)
* #1719 - Refactor TableModState to use nanoTime * Tests only - reduce logging
This commit is contained in:
@@ -145,9 +145,9 @@ final class PostCommitProcessing {
|
||||
if (cacheChanges != null) {
|
||||
Set<String> touched = cacheChanges.touchedTables();
|
||||
if (touched != null && !touched.isEmpty()) {
|
||||
manager.processTouchedTables(touched, cacheChanges.modificationTimestamp());
|
||||
manager.processTouchedTables(touched);
|
||||
if (remoteTransactionEvent != null) {
|
||||
remoteTransactionEvent.addRemoteTableMod(new RemoteTableMod(cacheChanges.modificationTimestamp(), touched));
|
||||
remoteTransactionEvent.addRemoteTableMod(new RemoteTableMod(touched));
|
||||
}
|
||||
}
|
||||
cacheChanges.apply();
|
||||
|
||||
Reference in New Issue
Block a user